grammar completed V1, still needs testing

This commit is contained in:
Nicolas Amaya
2025-09-27 13:28:28 -06:00
parent c9f6667df5
commit be8499f7fe
2 changed files with 250 additions and 20 deletions

View File

@@ -96,7 +96,7 @@ Volatile: 'volatile';
While: 'while';
// LITERALS -------------------------------------------------------------------------------------------------------------------
IntigerLiteral: DecimalIntegerLiteral | HexIntegerLiteral | OctalIntegerLiteral;
IntegerLiteral: DecimalIntegerLiteral | HexIntegerLiteral | OctalIntegerLiteral;
fragment DecimalIntegerLiteral:
DecimalNumeral IntegerTypeSuffix?;
@@ -214,7 +214,7 @@ ConditionalOR: '||';
Increment: '++';
Decrement: '--';
Addition: '+';
Subtaction: '-';
Subtraction: '-';
Multiplication: '*';
Division: '/';
BitwiseAND: '&';