stdlib/racc/parser.rb

Summary

Maintainability
F
3 days
Test Coverage

Method _racc_evalact has a Cognitive Complexity of 47 (exceeds 5 allowed). Consider refactoring.
Open

    def _racc_evalact(act, arg)
      action_table, action_check, _, action_pointer,
      _,   _, _, _,
      _,   _, _, shift_n,  reduce_n,
      _,   _, * = arg
Severity: Minor
Found in stdlib/racc/parser.rb - About 7 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

Method _racc_do_parse_rb has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
Open

    def _racc_do_parse_rb(arg, in_debug)
      action_table, action_check, action_default, action_pointer,
      _,            _,            _,              _,
      _,            _,            token_table,    _,
      _,            _,            * = arg
Severity: Minor
Found in stdlib/racc/parser.rb - About 5 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

Method _racc_yyparse_rb has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
Open

    def _racc_yyparse_rb(recv, mid, arg, c_debug)
      action_table, action_check, action_default, action_pointer,
      _,             _,            _,              _,
      _,            _,            token_table,    _,
      _,            _,            * = arg
Severity: Minor
Found in stdlib/racc/parser.rb - 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

Method _racc_evalact has 71 lines of code (exceeds 30 allowed). Consider refactoring.
Open

    def _racc_evalact(act, arg)
      action_table, action_check, _, action_pointer,
      _,   _, _, _,
      _,   _, _, shift_n,  reduce_n,
      _,   _, * = arg
Severity: Major
Found in stdlib/racc/parser.rb - About 2 hrs to fix

    Method _racc_yyparse_rb has 45 lines of code (exceeds 30 allowed). Consider refactoring.
    Open

        def _racc_yyparse_rb(recv, mid, arg, c_debug)
          action_table, action_check, action_default, action_pointer,
          _,             _,            _,              _,
          _,            _,            token_table,    _,
          _,            _,            * = arg
    Severity: Minor
    Found in stdlib/racc/parser.rb - About 1 hr to fix

      Method _racc_do_parse_rb has 35 lines of code (exceeds 30 allowed). Consider refactoring.
      Open

          def _racc_do_parse_rb(arg, in_debug)
            action_table, action_check, action_default, action_pointer,
            _,            _,            _,              _,
            _,            _,            token_table,    _,
            _,            _,            * = arg
      Severity: Minor
      Found in stdlib/racc/parser.rb - About 1 hr to fix

        Method _racc_setup has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

            def _racc_setup
              @yydebug = false unless self.class::Racc_debug_parser
              @yydebug = false unless defined?(@yydebug)
              if @yydebug
                @racc_debug_out = $stderr unless defined?(@racc_debug_out)
        Severity: Minor
        Found in stdlib/racc/parser.rb - 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

        Method _racc_do_reduce has 32 lines of code (exceeds 30 allowed). Consider refactoring.
        Open

            def _racc_do_reduce(arg, act)
              _, _, _, _,
              goto_table,   goto_check,   goto_default,   goto_pointer,
              nt_base,      reduce_table, _,    _,
              _,     use_result,   * = arg
        Severity: Minor
        Found in stdlib/racc/parser.rb - About 1 hr to fix

          Method _racc_do_reduce has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

              def _racc_do_reduce(arg, act)
                _, _, _, _,
                goto_table,   goto_check,   goto_default,   goto_pointer,
                nt_base,      reduce_table, _,    _,
                _,     use_result,   * = arg
          Severity: Minor
          Found in stdlib/racc/parser.rb - About 55 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

                  case @racc_error_status
                  when 0
                    unless arg[21]    # user_yyerror
                      on_error @racc_t, @racc_val, @racc_vstack
                    end
          Severity: Major
          Found in stdlib/racc/parser.rb - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                            unless tok      # EOF
                              @racc_t = 0
                            else
                              @racc_t = (token_table[tok] or 1)   # error token
                            end
            Severity: Major
            Found in stdlib/racc/parser.rb - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                      while true
                        if i = action_pointer[@racc_state[-1]]
                          i += 1   # error token
                          if  i >= 0 and
                              (act = action_table[i]) and
              Severity: Major
              Found in stdlib/racc/parser.rb - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                racc_read_token(@racc_t, tok, @racc_val) if @yydebug
                Severity: Major
                Found in stdlib/racc/parser.rb - About 45 mins to fix

                  There are no issues that match your filters.

                  Category
                  Status