twada/espower

View on GitHub

Showing 30 of 47 total issues

Function createVisitor has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
Open

  createVisitor (ast) {
    verifyAstPrerequisites(ast, this.options);
    const that = this;
    let assertionVisitor;
    const storage = {};
Severity: Minor
Found in lib/instrumentor.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 createVisitor has 93 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  createVisitor (ast) {
    verifyAstPrerequisites(ast, this.options);
    const that = this;
    let assertionVisitor;
    const storage = {};
Severity: Major
Found in lib/instrumentor.js - About 3 hrs to fix

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

    module.exports = function () {
      const isPromiseLike = (o) => o !== null &&
                    typeof o === 'object' &&
                    typeof o.then === 'function' &&
                    typeof o.catch === 'function';
    Severity: Major
    Found in templates/argument-recorder.js - About 3 hrs to fix

      File assertion-visitor.js has 295 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      'use strict';
      
      const pkg = require('../package.json');
      const { ArgumentModification, NoModification } = require('./argument-modification');
      const { createNewAssertionMessage, NodeCreator, getOrCreateNode, findBlockedScope, findEspathOfAncestorNode, insertAfterUseStrictDirective } = require('./create-node');
      Severity: Minor
      Found in lib/assertion-visitor.js - About 3 hrs to fix

        Function defaultOptions has 76 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        const defaultOptions = () => {
          return {
            ecmaVersion: 2018,
            sourceType: 'module',
            patterns: [
        Severity: Major
        Found in lib/default-options.js - About 3 hrs to fix

          Function exports has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
          Open

          module.exports = function () {
            const isPromiseLike = (o) => o !== null &&
                          typeof o === 'object' &&
                          typeof o.then === 'function' &&
                          typeof o.catch === 'function';
          Severity: Minor
          Found in templates/argument-recorder.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 valueToNode has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

            valueToNode (value) {
              // undefined
              if (value === undefined) {
                return this.identifier('undefined');
              }
          Severity: Minor
          Found in lib/create-node-with-loc.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 generateMetadataGenerator has 49 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            generateMetadataGenerator (controller) {
              const options = this.options;
              const types = new NodeCreator(options.globalScope.block);
              const generateNode = () => {
                const patternIndexIdent = types.identifier('ptnidx');
          Severity: Minor
          Found in lib/assertion-visitor.js - About 1 hr to fix

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

            const createPatternMatchers = (options) => {
              return options.patterns.map((p, index) => {
                const pattern = typeof p === 'string' ? p : p.pattern;
                const parsed = signature.parse(pattern);
                let matcher;
            Severity: Minor
            Found in lib/create-pattern-matchers.js - 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 generateMetadata has 41 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              generateMetadata (controller) {
                const currentNode = controller.current();
                const transformation = this.options.transformation;
                const types = new NodeCreator(currentNode);
                const props = {};
            Severity: Minor
            Found in lib/assertion-visitor.js - About 1 hr to fix

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

              module.exports = function () {
                const _s = '\n\n      ';
              
                class AssertionMessage {
                  /**
              Severity: Minor
              Found in templates/assertion-message.js - About 1 hr to fix

                Function generateNode has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    const generateNode = () => {
                      const patternIndexIdent = types.identifier('ptnidx');
                      const contentIdent = types.identifier('content');
                      const lineIdent = types.identifier('line');
                      const extraIdent = types.identifier('extra');
                Severity: Minor
                Found in lib/assertion-visitor.js - About 1 hr to fix

                  Function leave has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                        leave: function (currentNode, parentNode) {
                          try {
                            const controller = this;
                            const path = controller.path();
                            const espath = path ? path.join('/') : '';
                  Severity: Minor
                  Found in lib/instrumentor.js - About 1 hr to fix

                    Function _rec has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        _rec (value, espath) {
                          const empowered = this._callee && this._callee._empowered;
                          try {
                            if (!empowered) return value;
                            if (!espath) return this;
                    Severity: Minor
                    Found in templates/argument-recorder.js - About 1 hr to fix

                      Function valueToNode has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                        valueToNode (value) {
                          // undefined
                          if (value === undefined) {
                            return this.identifier('undefined');
                          }
                      Severity: Minor
                      Found in lib/create-node-with-loc.js - About 1 hr to fix

                        Function createPatternMatchers has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        const createPatternMatchers = (options) => {
                          return options.patterns.map((p, index) => {
                            const pattern = typeof p === 'string' ? p : p.pattern;
                            const parsed = signature.parse(pattern);
                            let matcher;
                        Severity: Minor
                        Found in lib/create-pattern-matchers.js - About 1 hr to fix

                          Function enter has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                                enter: function (currentNode, parentNode) {
                                  if (/Function/.test(currentNode.type)) {
                                    scopeStack.push(scopeManager.acquire(currentNode));
                                  }
                                  const controller = this;
                          Severity: Minor
                          Found in lib/instrumentor.js - About 1 hr to fix

                            Function appendMessage has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                              appendMessage (controller) {
                                const currentNode = controller.current();
                                if (this.messageUpdated) {
                                  // AssertionMessage is already merged with existing message argument
                                  return currentNode;
                            Severity: Minor
                            Found in lib/assertion-visitor.js - About 1 hr to fix

                              Function exports has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                              Open

                              module.exports = function () {
                                const _s = '\n\n      ';
                              
                                class AssertionMessage {
                                  /**
                              Severity: Minor
                              Found in templates/assertion-message.js - 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 matchArgument has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                              Open

                                matchArgument (currentNode, parentNode) {
                                  /* istanbul ignore next */
                                  if (isCalleeOfParent(currentNode, parentNode)) {
                                    return null;
                                  }
                              Severity: Minor
                              Found in lib/sig-matcher.js - 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

                              Severity
                              Category
                              Status
                              Source
                              Language