delihiros/futhon

View on GitHub
src/evaluator.py

Summary

Maintainability
D
2 days
Test Coverage

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 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 v
                              Severity: Major
                              Found in src/evaluator.py - About 30 mins to fix

                                Avoid too many return statements within this function.
                                Open

                                                return arg.get(head)
                                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 v
                                    Severity: Major
                                    Found in src/evaluator.py - About 30 mins to fix

                                      Avoid too many return statements within this function.
                                      Open

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

                                        Avoid too many return statements within this function.
                                        Open

                                                    return datatypes.Vector([self.eval(e, env) for e in expr])
                                        Severity: Major
                                        Found in src/evaluator.py - About 30 mins to fix

                                          Avoid too many return statements within this function.
                                          Open

                                                              return self.eval(expr[2], env)
                                          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 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 datatypes.Set([self.eval(e, env) for e in expr])
                                                Severity: Major
                                                Found in src/evaluator.py - About 30 mins to fix

                                                  Avoid too many return statements within this function.
                                                  Open

                                                                  return type(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 self.apply_function(env.get(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 self.eval([head] + expr[1:], env)
                                                      Severity: Major
                                                      Found in src/evaluator.py - About 30 mins to fix

                                                        There are no issues that match your filters.

                                                        Category
                                                        Status