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
As following task of #7057
JS-like shift operators need to be implemented as unified operators
<<
lsl
int
bigint
>>
asr
>>>
lsr
Old names should be kept for compatibility, but introducing longer clear names would be good. e.g. leftShift, unsignedRightShift
leftShift
unsignedRightShift
>>> only accepts int, but is a unified operator for consistency.
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:
Assigned to @gwansikk
Sorry, something went wrong.
No branches or pull requests
As following task of #7057
JS-like shift operators need to be implemented as unified operators
<<
,lsl
) - supportint
,bigint
>>
,asr
) - supportint
,bigint
>>>
,lsr
) - supportint
Old names should be kept for compatibility, but introducing longer clear names would be good. e.g.
leftShift
,unsignedRightShift
>>>
only acceptsint
, but is a unified operator for consistency.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: