Showing 70 of 839 total issues

Function minify has a Cognitive Complexity of 68 (exceeds 5 allowed). Consider refactoring.
Open

function minify($source, $pure_identifiers)
{
    static $name_map = [];
    static $pointer = 0;

Severity: Minor
Found in build.php - About 1 day 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 Repl.php has 423 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Quack Compiler and toolkit
 * Copyright (C) 2015-2017 Quack and CONTRIBUTORS
 *
Severity: Minor
Found in src/cli/Repl.php - About 6 hrs to fix

    File build.php has 422 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * Quack Compiler and toolkit
     * Copyright (C) 2015-2017 Quack and CONTRIBUTORS
     *
    Severity: Minor
    Found in build.php - About 6 hrs to fix

      Function digit has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring.
      Open

          public function digit()
          {
              $buffer = [];
              $number = $this->readChar();
      
      
      Severity: Minor
      Found in src/lexer/Tokenizer.php - 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

      Repl has 32 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class Repl extends Component
      {
          private $console;
          private $croak;
          private $modules = [];
      Severity: Minor
      Found in src/cli/Repl.php - About 4 hrs to fix

        Method minify has 99 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function minify($source, $pure_identifiers)
        {
            static $name_map = [];
            static $pointer = 0;
        
        
        Severity: Major
        Found in build.php - About 3 hrs to fix

          Function injectScope has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
          Open

              public function injectScope($parent_scope)
              {
                  $this->scope = $parent_scope;
                  $this->left->injectScope($parent_scope);
          
          
          Severity: Minor
          Found in src/ast/expr/OperatorExpr.php - About 3 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 nextToken has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
          Open

              public function nextToken()
              {
                  while ($this->peek != self::EOF) {
                      if (ctype_digit($this->peek)) {
                          return $this->digit();
          Severity: Minor
          Found in src/lexer/Tokenizer.php - About 3 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 getType has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
          Open

              public function getType()
              {
                  $bool = $this->scope->getPrimitiveType('Bool');
                  $type = (object) [
                      'left'  => $this->left->getType(),
          Severity: Minor
          Found in src/ast/expr/OperatorExpr.php - About 3 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 digit has 68 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function digit()
              {
                  $buffer = [];
                  $number = $this->readChar();
          
          
          Severity: Major
          Found in src/lexer/Tokenizer.php - About 2 hrs to fix

            File Tokenizer.php has 266 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            <?php
            /**
             * Quack Compiler and toolkit
             * Copyright (C) 2015-2017 Quack and CONTRIBUTORS
             *
            Severity: Minor
            Found in src/lexer/Tokenizer.php - About 2 hrs to fix

              Method getType has 56 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function getType()
                  {
                      $bool = $this->scope->getPrimitiveType('Bool');
                      $type = (object) [
                          'left'  => $this->left->getType(),
              Severity: Major
              Found in src/ast/expr/OperatorExpr.php - About 2 hrs to fix

                Method __construct has 55 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function __construct($reader)
                    {
                        $this->reader = $reader;
                        $this->register('&(', new PartialFuncParselet);
                        $this->register(Tag::T_INTEGER, new LiteralParselet);
                Severity: Major
                Found in src/parser/ExprParser.php - About 2 hrs to fix

                  Console has 21 functions (exceeds 20 allowed). Consider refactoring.
                  Open

                  class Console
                  {
                      private $stdin;
                      private $stdout;
                      private $stderr;
                  Severity: Minor
                  Found in src/cli/Console.php - About 2 hrs to fix

                    Method getCroakBuffer has 53 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function getCroakBuffer()
                    {
                        $packing_method = 'S';
                        $croak = realpath(dirname(__FILE__) . '/resource/quack.wav');
                        $handle = fopen($croak, 'rb');
                    Severity: Major
                    Found in build.php - About 2 hrs to fix

                      Function bundle has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                      Open

                      function bundle($config)
                      {
                          // Configuration
                          $bundle = $config['bundle'];
                          $resources = $config['resources'];
                      Severity: Minor
                      Found in build.php - 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 group_sections has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                      Open

                      def group_sections(input):
                          """
                          Receives an input and groups the sections
                          """
                          tok = 'none'
                      Severity: Minor
                      Found in tools/testsuite/run-tests.py - 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 simplify has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function simplify()
                          {
                              $simple_left = $this->left->simplify();
                              $simple_right = $this->right->simplify();
                      
                      
                      Severity: Minor
                      Found in src/ast/types/OperatorType.php - 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 compile has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          private function compile($source, $silent = false)
                          {
                              if ('' === $source) {
                                  $this->resetState();
                                  return;
                      Severity: Minor
                      Found in src/cli/Repl.php - About 1 hr to fix

                        Function injectScope has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function injectScope($parent_scope)
                            {
                                if (!$this->is_explicit) {
                                    // Check if there is an implicit label
                                    $label = $parent_scope->getMetaInContext(Meta::M_LABEL);
                        Severity: Minor
                        Found in src/ast/stmt/ContinueStmt.php - 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

                        Severity
                        Category
                        Status
                        Source
                        Language