Open cometkim opened 1 day ago
As following task of #7057
JS-like bitwise operators need to be implemented as unified operators
^
lnot
int
bigint
&
land
|
lor
lxor
Old names should be kept for compatibility, but introducing longer clear names would be good. e.g. bitwiseAnd, bitwiseOr
bitwiseAnd
bitwiseOr
This adds new token rules to the syntax, follow-up tasks for editor support will be opened.
Assigned to @MiryangJung
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
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.