File cleand up from unused code or TODO's

This commit is contained in:
Nicolas Amaya
2025-09-27 22:51:41 -06:00
parent d6faf4356b
commit 719447b9b0
4 changed files with 41 additions and 237 deletions

View File

@@ -15,9 +15,6 @@ Comment: (TraditionalComment | EndOfLineComment) -> skip;
fragment TraditionalComment:
'/*' NotStar CommentTail;
//fragment EndOfLineComment:
// '//' CharactersInLine? LineTerminator;
fragment CommentTail: '*' CommentTailStar | NotStar ;
fragment CommentTailStar:
@@ -29,23 +26,6 @@ fragment NotStar:
fragment NotStarNotSlash:
[^*/] | LineTerminator;
//fragment CharactersInLine: InputCharacter
// | InputCharacter;
//// UNICODE --------------------------------------------------------------------------------------------------------------
//UnicodeInputCharacter: UnicodeEscape | RawInputCharacter;
//
//fragment UnicodeEscape: '\\' UnicodeMarker HexDigit HexDigit HexDigit HexDigit;
//
//fragment UnicodeMarker: 'u'+;
//
//
//fragment RawInputCharacter: .;
// //not complete need to ask question from prof.
//
//
//fragment InputCharacter: [^\n\r];
// KEYWORDS --------------------------------------------------------------------------------------------------------
Abstract: 'abstract';
Assert: 'assert';