As following task of #7057
JS-like bitwise operators need to be implemented as unified operators
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.
As following task of #7057
JS-like bitwise operators need to be implemented as unified operators
~,lnot) -[ ] supportint,bigint(Add support for the bitwise NOT(~) unary operator #7418)&,land) - supportint,bigint(add bitwise AND (&) operator #7415)|,lor) - supportint,bigint(add bitor (|) unified operator #7382)^,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,bitwiseOrThis adds new token rules to the syntax, follow-up tasks for editor support will be opened.