Showing 12 of 18 total issues

Function ClassScope has 184 lines of code (exceeds 25 allowed). Consider refactoring.
Open

(function ClassScope(undefined) {
  'use strict';

  // A map containing all classes registered to the ClassFactory.
  // These classes are the original classes.
Severity: Major
Found in src/clazz.js - About 7 hrs to fix

Function LinkedHashMapScope has 157 lines of code (exceeds 25 allowed). Consider refactoring.
Open

(function LinkedHashMapScope(enofjs, undefined) {
  'use strict';

  // A `Node` containing a `key` `value` pair.
  // The `key` supports the types integer and string.
Severity: Major
Found in src/LinkedHashMap.js - About 6 hrs to fix

Function LinkedHashMapScope has a Cognitive Complexity of 39 (exceeds 5 allowed). Consider refactoring.
Open

(function LinkedHashMapScope(enofjs, undefined) {
  'use strict';

  // A `Node` containing a `key` `value` pair.
  // The `key` supports the types integer and string.
Severity: Minor
Found in src/LinkedHashMap.js - 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

Function ClassScope has a Cognitive Complexity of 37 (exceeds 5 allowed). Consider refactoring.
Open

(function ClassScope(undefined) {
  'use strict';

  // A map containing all classes registered to the ClassFactory.
  // These classes are the original classes.
Severity: Minor
Found in src/clazz.js - 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

Function LinkedHashMap has 134 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  var LinkedHashMap = enofjs.clazz(function LinkedHashMap() {
    this.private = {
      duplicateKeyError: 'key already exists in LinkedHashMap',
      keyNotFoundError: 'key not found',
      size: {
Severity: Major
Found in src/LinkedHashMap.js - About 5 hrs to fix

Function SerializableScope has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
Open

(function SerializableScope(enofjs) {
  'use strict';

  function Serializable() {

Severity: Minor
Found in src/Serializable.js - 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

Function exports has 95 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function(grunt) {
  require('load-grunt-tasks')(grunt);
  require('time-grunt')(grunt);

  grunt.initConfig({
Severity: Major
Found in Gruntfile.js - About 3 hrs to fix

Function SerializableScope has 66 lines of code (exceeds 25 allowed). Consider refactoring.
Open

(function SerializableScope(enofjs) {
  'use strict';

  function Serializable() {

Severity: Major
Found in src/Serializable.js - About 2 hrs to fix

Function Serializable has 61 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  function Serializable() {

    this.private = {
      // Deserialization for the private and protected variables.
      // `public` properties are not supported, use `getters` and `setters` instead!
Severity: Major
Found in src/Serializable.js - About 2 hrs to fix

Function whereIt has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

(function whereIt(it, LinkedHashMap) {
  'use strict';

  // Create new test cases, ready to be executed by Jasmine

Severity: Minor
Found in src/whereIt.js - 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 whereIt has 44 lines of code (exceeds 25 allowed). Consider refactoring.
Open

(function whereIt(it, LinkedHashMap) {
  'use strict';

  // Create new test cases, ready to be executed by Jasmine

Severity: Minor
Found in src/whereIt.js - About 1 hr to fix

Function generateAutoIsGetSet has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  function generateAutoIsGetSet(scopeName, members, publicScope) {
    for (var member in members) {
      var autoProperty = members[member];
      var getter = false;
      var isser = false;
Severity: Minor
Found in src/clazz.js - About 1 hr to fix
Severity
Category
Status
Source
Language