mirror of https://gitlab.com/basile.b/dexed.git
#104, forget to set AsmLog{and|or}Expr text
This commit is contained in:
parent
25384f63c9
commit
7a673e96e9
|
@ -434,8 +434,8 @@ private final class HalsteadMetric: ASTVisitor
|
|||
static if (is(T == AndExpression)) op = `&`;
|
||||
else static if (is(T == AndAndExpression)) op = `&&`;
|
||||
else static if (is(T == AsmAndExp)) op = `&`;
|
||||
else static if (is(T == AsmLogAndExp)) op = "?";
|
||||
else static if (is(T == AsmLogOrExp)) op = "?";
|
||||
else static if (is(T == AsmLogAndExp)) op = "&&";
|
||||
else static if (is(T == AsmLogOrExp)) op = "||";
|
||||
else static if (is(T == AsmOrExp)) op = "|";
|
||||
else static if (is(T == AsmXorExp)) op = "|";
|
||||
else static if (is(T == IdentityExpression)) op = expr.negated ? "!is" : "is";
|
||||
|
|
Loading…
Reference in New Issue