-
-
Notifications
You must be signed in to change notification settings - Fork 62
Closed as not planned
Description
Create a new node that replaces the usage of Binary within pattern matching expressions to represent the use of the | operator.
For example:
case foo
in Bar | Baz
endIn the above expression Bar | Baz is set as a Binary in Syntax Tree. Instead, we should have our own node for it.
YARP has: left, right, operator_loc, and location on it.