feat(if): Support inequality operator

This commit is contained in:
Kyle Fuller
2016-11-28 17:56:49 +00:00
parent e989317929
commit ab6f1a032d
5 changed files with 40 additions and 5 deletions

View File

@@ -18,6 +18,7 @@ let operators: [Operator] = [
.infix("and", 7, AndExpression.self),
.prefix("not", 8, NotExpression.self),
.infix("==", 10, EqualityExpression.self),
.infix("!=", 10, InequalityExpression.self),
]