-
Notifications
You must be signed in to change notification settings - Fork 465
New issue
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
Support bitwise operators #7172
Labels
Comments
Assigned to @MiryangJung |
Um, I think there are remaining operators to implement. |
We just have XOR for now, right? |
Right. And @MiryangJung said she can do others too |
Ok then! I took the liberty of changing your OP. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As following task of #7057
JS-like bitwise operators need to be implemented as unified operators
~
,lnot
) -[ ] supportint
,bigint
&
,land
) - supportint
,bigint
|
,lor
) - supportint
,bigint
^
,lxor
) - supportint
,bigint
(add bitxor (^) unified operator #7216)Old names should be kept for compatibility, but introducing longer clear names would be good. e.g.
bitwiseAnd
,bitwiseOr
This adds new token rules to the syntax, follow-up tasks for editor support will be opened.
The text was updated successfully, but these errors were encountered: