feat(if): Support equatable operator

This commit is contained in:
Kyle Fuller
2016-11-28 17:51:17 +00:00
parent 111306fb60
commit e989317929
5 changed files with 86 additions and 1 deletions

View File

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