feat: added in expression in if tag (#143)

This commit is contained in:
Ilya Puchka
2017-10-01 12:46:48 +02:00
committed by Kyle Fuller
parent 000e9a7f1a
commit 3180b26673
4 changed files with 49 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ enum Operator {
let operators: [Operator] = [
.infix("in", 5, InExpression.self),
.infix("or", 6, OrExpression.self),
.infix("and", 7, AndExpression.self),
.prefix("not", 8, NotExpression.self),