mirror of https://gitlab.com/basile.b/dexed.git
104, detect template prms in operands that are not part of a func call
This commit is contained in:
parent
52f9eb4324
commit
1111f43172
|
@ -160,6 +160,21 @@ private final class HalsteadMetric: ASTVisitor
|
||||||
functionNesting--;
|
functionNesting--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override void visit(const(TemplateArguments) ta)
|
||||||
|
{
|
||||||
|
ta.accept(this);
|
||||||
|
if (ta.templateSingleArgument)
|
||||||
|
{
|
||||||
|
if (!isLiteral(ta.templateSingleArgument.token.type))
|
||||||
|
++operands[ta.templateSingleArgument.token.text];
|
||||||
|
else
|
||||||
|
{
|
||||||
|
import std.digest.crc: crc32Of, toHexString;
|
||||||
|
++operands["literal" ~ ta.templateSingleArgument.token.text.crc32Of.toHexString.idup];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override void visit(const(FunctionCallExpression) expr)
|
override void visit(const(FunctionCallExpression) expr)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -273,7 +288,6 @@ private final class HalsteadMetric: ASTVisitor
|
||||||
++operands[expr.identifierOrTemplateInstance.identifier.text];
|
++operands[expr.identifierOrTemplateInstance.identifier.text];
|
||||||
else
|
else
|
||||||
++operands[expr.identifierOrTemplateInstance.templateInstance.identifier.text];
|
++operands[expr.identifierOrTemplateInstance.templateInstance.identifier.text];
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1184,7 +1198,6 @@ unittest
|
||||||
|
|
||||||
unittest
|
unittest
|
||||||
{
|
{
|
||||||
//FIXME: single template param without parens not detected
|
|
||||||
Function r =
|
Function r =
|
||||||
q{
|
q{
|
||||||
void foo()
|
void foo()
|
||||||
|
@ -1192,7 +1205,7 @@ unittest
|
||||||
a.b!8.c = f;
|
a.b!8.c = f;
|
||||||
}
|
}
|
||||||
}.test;
|
}.test;
|
||||||
//assert(r.operandsKinds == 5);
|
assert(r.operandsKinds == 5);
|
||||||
assert(r.operatorsKinds == 2);
|
assert(r.operatorsKinds == 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue