We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a new node that replaces the usage of Binary within pattern matching expressions to represent the use of the | operator.
Binary
|
For example:
case foo in Bar | Baz end
In the above expression Bar | Baz is set as a Binary in Syntax Tree. Instead, we should have our own node for it.
Bar | Baz
YARP has: left, right, operator_loc, and location on it.
left
right
operator_loc
location
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create a new node that replaces the usage of
Binary
within pattern matching expressions to represent the use of the|
operator.For example:
In the above expression
Bar | Baz
is set as aBinary
in Syntax Tree. Instead, we should have our own node for it.YARP has:
left
,right
,operator_loc
, andlocation
on it.The text was updated successfully, but these errors were encountered: