angular/angular.js

View on GitHub
src/ng/controller.js

Summary

Maintainability
D
1 day
Test Coverage

Function $ControllerProvider has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
Open

function $ControllerProvider() {
  var controllers = {};

  /**
   * @ngdoc method
Severity: Minor
Found in src/ng/controller.js - 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 $ControllerProvider has 73 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function $ControllerProvider() {
  var controllers = {};

  /**
   * @ngdoc method
Severity: Major
Found in src/ng/controller.js - About 2 hrs to fix

    Function $get has 59 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      this.$get = ['$injector', function($injector) {
    
        /**
         * @ngdoc service
         * @name $controller
    Severity: Major
    Found in src/ng/controller.js - About 2 hrs to fix

      Function $controller has 49 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          return function $controller(expression, locals, later, ident) {
            // PRIVATE API:
            //   param `later` --- indicates that the controller's constructor is invoked at a later time.
            //                     If true, $controller will allocate the object with the correct
            //                     prototype chain, but will not invoke the controller until a returned
      Severity: Minor
      Found in src/ng/controller.js - About 1 hr to fix

        There are no issues that match your filters.

        Category
        Status