Revert "removing the special case for | or"

This reverts commit 9763839ed1.
This commit is contained in:
Jeremy Ashkenas
2010-03-27 15:25:27 -04:00
parent 030476d335
commit 4dd40034ed
6 changed files with 127 additions and 127 deletions

View File

@@ -264,6 +264,7 @@ grammar: {
# operations.
Pipe: [
o "Expression | Expression", -> new PipeNode $1, $3
o "Expression | || Expression", -> new PipeNode $1, $4, true
]
# The three flavors of function call: normal, object instantiation with `new`,