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
Apparently we are missing following tokens:
&&=
OperatorLogicalAndAssign
||=
OperatorLogicalOrAssign
#
@
::
OperatorBind
..
Editing the enum will require altering all lookup tables, which is a bit of a chore.
* - those are apparently invalid in ECMAScript, some parsers recognize them internally as tokens but don't parse them.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Apparently we are missing following tokens:
*&&=
should beOperatorLogicalAndAssign
*||=
should beOperatorLogicalOrAssign
#
? proposed use for private fields@
? proposed use for decorators::
should beOperatorBind
..
? E4X specific, not sure if we even need itEditing the enum will require altering all lookup tables, which is a bit of a chore.
* - those are apparently invalid in ECMAScript, some parsers recognize them internally as tokens but don't parse them.
The text was updated successfully, but these errors were encountered: