mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
Stop calculating cyclomatic complexity for methods which have Macro conditions (#99)
This commit is contained in:
parent
a0da393429
commit
c95ea297bd
2 changed files with 36 additions and 2 deletions
|
@ -18,6 +18,32 @@ module Ameba::AST
|
||||||
visitor.count.should eq 1
|
visitor.count.should eq 1
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "is 1 if there is Macro::For" do
|
||||||
|
code = %(
|
||||||
|
def initialize()
|
||||||
|
{% for c in ALL_NODES %}
|
||||||
|
true || false
|
||||||
|
{% end %}
|
||||||
|
end
|
||||||
|
)
|
||||||
|
node = Crystal::Parser.new(code).parse
|
||||||
|
visitor = CountingVisitor.new node
|
||||||
|
visitor.count.should eq 1
|
||||||
|
end
|
||||||
|
|
||||||
|
it "is 1 if there is Macro::If" do
|
||||||
|
code = %(
|
||||||
|
def initialize()
|
||||||
|
{% if foo.bar? %}
|
||||||
|
true || false
|
||||||
|
{% end %}
|
||||||
|
end
|
||||||
|
)
|
||||||
|
node = Crystal::Parser.new(code).parse
|
||||||
|
visitor = CountingVisitor.new node
|
||||||
|
visitor.count.should eq 1
|
||||||
|
end
|
||||||
|
|
||||||
{% for pair in [
|
{% for pair in [
|
||||||
{code: "if true; end", description: "conditional"},
|
{code: "if true; end", description: "conditional"},
|
||||||
{code: "while true; end", description: "while loop"},
|
{code: "while true; end", description: "while loop"},
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
module Ameba::AST
|
module Ameba::AST
|
||||||
# AST Visitor that counts occurrences of certain keywords
|
# AST Visitor that counts occurrences of certain keywords
|
||||||
class CountingVisitor < Crystal::Visitor
|
class CountingVisitor < Crystal::Visitor
|
||||||
@complexity = 1
|
DEFAULT_COMPLEXITY = 1
|
||||||
|
getter macro_condition = false
|
||||||
|
|
||||||
# Creates a new counting visitor
|
# Creates a new counting visitor
|
||||||
def initialize(@scope : Crystal::ASTNode)
|
def initialize(@scope : Crystal::ASTNode)
|
||||||
|
@complexity = DEFAULT_COMPLEXITY
|
||||||
end
|
end
|
||||||
|
|
||||||
# :nodoc:
|
# :nodoc:
|
||||||
|
@ -24,8 +26,14 @@ module Ameba::AST
|
||||||
{% for node in %i(if while until rescue when or and) %}
|
{% for node in %i(if while until rescue when or and) %}
|
||||||
# :nodoc:
|
# :nodoc:
|
||||||
def visit(node : Crystal::{{ node.id.capitalize }})
|
def visit(node : Crystal::{{ node.id.capitalize }})
|
||||||
@complexity += 1
|
@complexity += 1 unless macro_condition
|
||||||
end
|
end
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
|
def visit(node : Crystal::MacroIf | Crystal::MacroFor)
|
||||||
|
@macro_condition = true
|
||||||
|
@complexity = DEFAULT_COMPLEXITY
|
||||||
|
false
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue