removed part of the grammar for performance

This commit is contained in:
Nicolas Amaya
2025-09-27 14:11:33 -06:00
parent be8499f7fe
commit 9e858a98f3
2 changed files with 237 additions and 145 deletions

View File

@@ -188,7 +188,7 @@ NullLiteral: 'null';
//SEPRATORS -------------------------------------------------------------------------------------------------------------------------
ParenthesesLeft: '(';
ParanthesesRight: ')';
ParenthesesRight: ')';
CurlyBracketLeft: '{';
CurlyBracketRight: '}';
SquareBracketLeft: '[';
@@ -233,8 +233,8 @@ BitwiseORAssign: '|=';
BitwiseXORAssign: '^=';
RemainderAssign: '%=';
LeftShiftAssign: '<<=';
SighnedRightShiftAssign: '>>=';
UnsighnedRightShiftAssign: '>>>=';
SignedRightShiftAssign: '>>=';
UnsignedRightShiftAssign: '>>>=';
//IDENTIFIERS -------------------------------------------------------------------------------------------------------------------------------------------