src/lib/preamble.js
Function insertPreambleTokens
has a Cognitive Complexity of 41 (exceeds 5 allowed). Consider refactoring. Wontfix
Wontfix
function insertPreambleTokens(tokens, preambleToken, versionReplacer = (v) => v) {
/** @param {import('./parse.js').ParserToken} token */
const newVersionToken = function* (token) {
const newVersion = versionReplacer(undefined);
if (newVersion !== undefined) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function insertExtensionPreamble
has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring. Wontfix
Wontfix
export function insertExtensionPreamble(code, filePath, versionReplacer = (v) => v, extraPreamble) {
// let extensionDirectiveRequired = true;
const tokens = [...(function* () {
// Check for an existing #extension GL_GOOGLE_include_directive : require
for (const token of simpleParse(code)) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid deeply nested control flow statements. Wontfix
Wontfix
if (!found) {
found = true;
}
Avoid deeply nested control flow statements. Wontfix
Wontfix
if (preserve) {
token.text = `#extension ${GLSL_LINE_EXT} : require`;
} else {
skipNextEOL = true;
continue nextToken; // Skip this token