delihiros/futhon

View on GitHub

Showing 35 of 37 total issues

Function eval_list has a Cognitive Complexity of 59 (exceeds 5 allowed). Consider refactoring.
Open

    def eval_list(self, expr, env):
        if len(expr) == 0:
            return expr
        head = expr[0]
        if datatypes.isSymbol(head):
Severity: Minor
Found in src/evaluator.py - 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

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

    def wait_or_run(self, s):
        pairs = {
            ']': '[', '}': '{', ')': '('
        }
        self.lines += s
Severity: Minor
Found in src/repl.py - 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 _symbol has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def _symbol(self, node):
        itm = node.tail[0]
        if itm == 'nil' or itm == 'None':
            return None
        elif itm == 'true' or itm == 'True':
Severity: Minor
Found in src/futhon_parser.py - 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

Function eval has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    def eval(self, expr, env):
        if not datatypes.isFuthonObj(expr):
            if isinstance(expr, list):
                return self.eval_list(expr, env)
            return expr
Severity: Minor
Found in src/evaluator.py - About 35 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 too many return statements within this function.
Open

                return datatypes.Lambda(expr[1], expr[2], copy.copy(env))
Severity: Major
Found in src/evaluator.py - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                        return None
    Severity: Major
    Found in src/evaluator.py - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

                              return v
      Severity: Major
      Found in src/evaluator.py - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                        return len(expr[1])
        Severity: Major
        Found in src/evaluator.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                              return f(*args)
          Severity: Major
          Found in src/evaluator.py - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                        return self.apply_function(head, args, env)
            Severity: Major
            Found in src/evaluator.py - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                              return None
              Severity: Major
              Found in src/evaluator.py - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                                return dynamic.import_module(expr[1].name)
                Severity: Major
                Found in src/evaluator.py - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                                      return dynamic.attribute_or_call(instance, method_name, args)
                  Severity: Major
                  Found in src/evaluator.py - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                                    return None
                    Severity: Major
                    Found in src/evaluator.py - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                                  return head.get(self.eval(expr[1], env))
                      Severity: Major
                      Found in src/evaluator.py - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                            return head
                        Severity: Major
                        Found in src/evaluator.py - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                          return expr[1]
                          Severity: Major
                          Found in src/evaluator.py - About 30 mins to fix

                            Avoid too many return statements within this function.
                            Open

                                            return v
                            Severity: Major
                            Found in src/evaluator.py - About 30 mins to fix

                              Avoid too many return statements within this function.
                              Open

                                          return float(itm)
                              Severity: Major
                              Found in src/futhon_parser.py - About 30 mins to fix

                                Avoid too many return statements within this function.
                                Open

                                            return datatypes.Symbol(itm)
                                Severity: Major
                                Found in src/futhon_parser.py - About 30 mins to fix
                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language