tom-weatherhead/thaw-parser

View on GitHub

Showing 22 of 27 total issues

Function llDriver has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
Open

    private llDriver(tokenList: IToken[], parse: boolean): unknown {
        if (tokenList.length === 0) {
            throw new ParserException('Token list is empty');
        }

Severity: Minor
Found in src/ll1-parser.ts - About 6 hrs to fix

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

File lr0-parser.ts has 405 lines of code (exceeds 250 allowed). Consider refactoring.
Open

// tom-weatherhead/thaw-parser/src/lr0-parser.ts

import {
    createSet,
    IEqualityComparable,
Severity: Minor
Found in src/lr0-parser.ts - About 5 hrs to fix

    Function shift_reduce_driver has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring.
    Open

        private shift_reduce_driver(tokenList: IToken[], parse: boolean): unknown {
            if (tokenList.length === 0) {
                throw new SyntaxException('Token list is empty');
            }
    
    
    Severity: Minor
    Found in src/lr0-parser.ts - About 4 hrs to fix

    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 fillFollowSet has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
    Open

        protected fillFollowSet(): void {
            // this.grammar.nonTerminals.for Each((A: GrammarSymbol) => {
            for (const A of this.grammar.nonTerminals) {
                this.followSet.set(A, createSet<GrammarSymbol>());
            }
    Severity: Minor
    Found in src/parser-base.ts - About 4 hrs to fix

    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 llDriver has 85 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        private llDriver(tokenList: IToken[], parse: boolean): unknown {
            if (tokenList.length === 0) {
                throw new ParserException('Token list is empty');
            }
    
    
    Severity: Major
    Found in src/ll1-parser.ts - About 3 hrs to fix

      Function shift_reduce_driver has 82 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private shift_reduce_driver(tokenList: IToken[], parse: boolean): unknown {
              if (tokenList.length === 0) {
                  throw new SyntaxException('Token list is empty');
              }
      
      
      Severity: Major
      Found in src/lr0-parser.ts - About 3 hrs to fix

        Function GetAction has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
        Open

            private GetAction(S: CFSMState): {
                reduceProductionNum: number;
                action: ShiftReduceAction;
            } {
                let result = ShiftReduceAction.Error;
        Severity: Minor
        Found in src/lr0-parser.ts - About 2 hrs to fix

        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 computeFirst has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
        Open

            protected computeFirst(alpha: GrammarSymbol[]): ISet<GrammarSymbol> {
                const k = alpha.length;
                const result = createSet<GrammarSymbol>();
        
                if (k === 0 || (k === 1 && alpha[0] === GrammarSymbol.Lambda)) {
        Severity: Minor
        Found in src/parser-base.ts - About 2 hrs to fix

        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 closure0 has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
        Open

            private closure0(s: IImmutableSet<LR0Configuration>): ISet<LR0Configuration> {
                const sPrime = createSet<LR0Configuration>(s);
                const additions = createSet<LR0Configuration>();
        
                do {
        Severity: Minor
        Found in src/lr0-parser.ts - About 2 hrs to fix

        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 fillFirstSet has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
        Open

            protected fillFirstSet(): void {
                for (const A of this.grammar.nonTerminals) {
                    const s = createSet<GrammarSymbol>();
        
                    if (this.derivesLambda.contains(A)) {
        Severity: Minor
        Found in src/parser-base.ts - About 2 hrs to fix

        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 fillFollowSet has 43 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected fillFollowSet(): void {
                // this.grammar.nonTerminals.for Each((A: GrammarSymbol) => {
                for (const A of this.grammar.nonTerminals) {
                    this.followSet.set(A, createSet<GrammarSymbol>());
                }
        Severity: Minor
        Found in src/parser-base.ts - About 1 hr to fix

          Function computeFirst has 42 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              protected computeFirst(alpha: GrammarSymbol[]): ISet<GrammarSymbol> {
                  const k = alpha.length;
                  const result = createSet<GrammarSymbol>();
          
                  if (k === 0 || (k === 1 && alpha[0] === GrammarSymbol.Lambda)) {
          Severity: Minor
          Found in src/parser-base.ts - About 1 hr to fix

            Function GetAction has 40 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                private GetAction(S: CFSMState): {
                    reduceProductionNum: number;
                    action: ShiftReduceAction;
                } {
                    let result = ShiftReduceAction.Error;
            Severity: Minor
            Found in src/lr0-parser.ts - About 1 hr to fix

              Function fillFirstSet has 39 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  protected fillFirstSet(): void {
                      for (const A of this.grammar.nonTerminals) {
                          const s = createSet<GrammarSymbol>();
              
                          if (this.derivesLambda.contains(A)) {
              Severity: Minor
              Found in src/parser-base.ts - About 1 hr to fix

                Function build_CFSM has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                Open

                    private build_CFSM(): CharacteristicFiniteStateMachine {
                        const s0 = this.compute_s0();
                        const startState = new CFSMState(s0);
                        const cfsm = new CharacteristicFiniteStateMachine(startState);
                        const S = new Stack<ISet<LR0Configuration>>();
                Severity: Minor
                Found in src/lr0-parser.ts - About 1 hr to fix

                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 build_CFSM has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    private build_CFSM(): CharacteristicFiniteStateMachine {
                        const s0 = this.compute_s0();
                        const startState = new CFSMState(s0);
                        const cfsm = new CharacteristicFiniteStateMachine(startState);
                        const S = new Stack<ISet<LR0Configuration>>();
                Severity: Minor
                Found in src/lr0-parser.ts - About 1 hr to fix

                  Function markLambda has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                  Open

                      private markLambda(): void {
                          let changes: boolean;
                  
                          do {
                              changes = false;
                  Severity: Minor
                  Found in src/parser-base.ts - About 1 hr to fix

                  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.
                  Open

                                      for (let i = p.rhs.length - 1; i >= 0; --i) {
                                          if ((p.rhs[i] as GrammarSymbol) !== GrammarSymbol.Lambda) {
                                              // Push semantic actions, and any symbols except Lambda.
                                              parseStack.push(p.rhs[i]);
                                          }
                  Severity: Major
                  Found in src/ll1-parser.ts - About 45 mins to fix

                    Function fillParseTable has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                        private fillParseTable(): ReadonlyMap<string, IProduction> {
                            const parseTable = new Map<string, IProduction>();
                    
                            for (const p of this.grammar.productions) {
                                const pValue = this.predict.get(p);
                    Severity: Minor
                    Found in src/ll1-parser.ts - About 45 mins to fix

                    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.
                    Open

                                    } else if (symbolX === tokenAsSymbol) {
                                        // console.log(`Matched token/symbol ${X}`);
                    
                                        if (parse) {
                                            this.grammar.pushTokenOntoSemanticStack(
                    Severity: Major
                    Found in src/ll1-parser.ts - About 45 mins to fix
                      Severity
                      Category
                      Status
                      Source
                      Language