rubinius/rubinius

View on GitHub
core/proc.rb

Summary

Maintainability
B
5 hrs
Test Coverage

Method parameters has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

  def parameters
    if @ruby_method
      return @ruby_method.parameters
    elsif @bound_method
      return @bound_method.parameters
Severity: Minor
Found in core/proc.rb - 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

Method parameters has 31 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def parameters
    if @ruby_method
      return @ruby_method.parameters
    elsif @bound_method
      return @bound_method.parameters
Severity: Minor
Found in core/proc.rb - About 1 hr to fix

    Method arity has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def arity
        if @ruby_method
          return @ruby_method.arity
        elsif @bound_method
          arity = @bound_method.arity
    Severity: Minor
    Found in core/proc.rb - 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

    Method source_location has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def source_location
        if @ruby_method
          @ruby_method.source_location
        elsif @bound_method
          if @bound_method.respond_to?(:source_location)
    Severity: Minor
    Found in core/proc.rb - About 25 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

    Method new has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def self.new(*args)
        env = nil
    
        Rubinius.asm do
          push_block
    Severity: Minor
    Found in core/proc.rb - About 25 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

    Method curry has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def curry(curried_arity = nil)
        if lambda? && curried_arity
          if arity >= 0 && curried_arity != arity
            raise ArgumentError, "Wrong number of arguments (%i for %i)" % [
              curried_arity,
    Severity: Minor
    Found in core/proc.rb - About 25 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

    There are no issues that match your filters.

    Category
    Status