Genese complexity report

<- lambda-expression.ts
Methods : 1
Complexity index : 17.8
Cyclomatic complexity : 2
Cognitive complexity
0 % Correct 0/1
100 % Warning 1/1 (threshold : 10)
0 % Error 0/1 (threshold : 20)
Cyclomatic complexity
100 % Correct 1/1
0 % Warning 0/1 (threshold : 5)
0 % Error 0/1 (threshold : 10)
Methods of lambda-expression.ts
run Complexity Index 17.8 Cyclomatic complexity 2
                            
                                
            
            
            // @ts-ignore
            export function run(cstNode: LambdaExpression, children: LambdaExpressionChildren) { // ------- +0.5 Complexity index (+0.5 atomic)
                const lambdaParameters = children.lambdaParameters; // ------------------------------------ +0.4 Complexity index (+0.4 atomic)
                const arrow = children.Arrow; // ---------------------------------------------------------- +0.4 Complexity index (+0.4 atomic)
                const lambdaBody = children.lambdaBody; // ------------------------------------------------ +0.4 Complexity index (+0.4 atomic)
            
                return { // ------------------------------------------------------------------------------- +0.1 Complexity index (+0.1 atomic)
                    kind: 'ArrowFunction', // ------------------------------------------------------------- +0.2 Complexity index (+0.2 atomic)
                    start: cstNode.location.startOffset, // ----------------------------------------------- +0.4 Complexity index (+0.4 atomic)
                    end: cstNode.location.endOffset, // --------------------------------------------------- +0.4 Complexity index (+0.4 atomic)
                    pos: cstNode.location.startOffset, // ------------------------------------------------- +0.4 Complexity index (+0.4 atomic)
                    children: [ // ------------------------------------------------------------------------ +0.1 Complexity index (+0.1 atomic)
                        ...[].concat(...lambdaParameters.map(e => cstToAst(e)) ?? []), // ----------------- +4.8 Complexity index (+0.8 atomic, +4 structural)
                        ...[].concat(...arrow?.map(e => cstToAst(e, 'arrow')) ?? []), // ------------------ +4.9 Complexity index (+0.9 atomic, +4 structural)
                        ...[].concat(...lambdaBody.map(e => cstToAst(e)) ?? []) // ------------------------ +4.8 Complexity index (+0.8 atomic, +4 structural)
                    ]
                } 
                
            }