#104, forget to set AsmLog{and|or}Expr text

This commit is contained in:
Basile Burg 2016-11-22 00:06:46 +01:00
parent 25384f63c9
commit 7a673e96e9
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 2 additions and 2 deletions

View File

@ -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";