ericduran/chromeHAR

View on GitHub
js/libs/devTools.js

Summary

Maintainability
D
1 day
Test Coverage

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

String.tokenizeFormatString = function(format, formatters)
{
    var tokens = [];
    var substitutionIndex = 0;

Severity: Minor
Found in js/libs/devTools.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 format has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

String.format = function(format, substitutions, formatters, initialValue, append)
{
    if (!format || !substitutions || !substitutions.length)
        return { formattedResult: append(initialValue, format), unusedSubstitutions: substitutions };

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

String.tokenizeFormatString = function(format, formatters)
{
    var tokens = [];
    var substitutionIndex = 0;

Severity: Minor
Found in js/libs/devTools.js - About 1 hr to fix

    Function format has 47 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    String.format = function(format, substitutions, formatters, initialValue, append)
    {
        if (!format || !substitutions || !substitutions.length)
            return { formattedResult: append(initialValue, format), unusedSubstitutions: substitutions };
    
    
    Severity: Minor
    Found in js/libs/devTools.js - About 1 hr to fix

      Function ParsedURL has 43 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      WebInspector.ParsedURL = function(url)
      {
          this.isValid = false;
          this.url = url;
          this.scheme = "";
      Severity: Minor
      Found in js/libs/devTools.js - About 1 hr to fix

        Function ParsedURL has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

        WebInspector.ParsedURL = function(url)
        {
            this.isValid = false;
            this.url = url;
            this.scheme = "";
        Severity: Minor
        Found in js/libs/devTools.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 UIString has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

        WebInspector.UIString = function(string, vararg)
        {
            if (Preferences.localizeUI) {
                if (window.localizedStrings && string in window.localizedStrings)
                    string = window.localizedStrings[string];
        Severity: Minor
        Found in js/libs/devTools.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 format has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        String.format = function(format, substitutions, formatters, initialValue, append)
        Severity: Minor
        Found in js/libs/devTools.js - About 35 mins to fix

          Avoid too many return statements within this function.
          Open

                  return WebInspector.UIString("%.0fMB", megabytes);
          Severity: Major
          Found in js/libs/devTools.js - About 30 mins to fix

            There are no issues that match your filters.

            Category
            Status