adding the 'in' operator

This commit is contained in:
Jeremy Ashkenas
2010-01-05 23:29:43 -05:00
parent 0275e7775f
commit 4fc40e4841
2 changed files with 5 additions and 0 deletions

View File

@@ -183,6 +183,7 @@ rule
| Expression '&&=' Expression { result = OpNode.new(val[1], val[0], val[2]) }
| Expression INSTANCEOF Expression { result = OpNode.new(val[1], val[0], val[2]) }
| Expression IN Expression { result = OpNode.new(val[1], val[0], val[2]) }
;
Existence: