Skip to content

Commit f166f79

Browse files
committed
Update VBA.g4
added to changelog
1 parent 5015d6f commit f166f79

File tree

1 file changed

+4
-3
lines changed
  • Rubberduck.Parsing/Grammar

1 file changed

+4
-3
lines changed

Rubberduck.Parsing/Grammar/VBA.g4

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
* - fixed precompiler directives, which can now be nested. they still can't interfere with other blocks though.
7575
* - optional parameters can be a valueStmt.
7676
* - added support for Octal and Currency literals.
77+
* - implemented proper specs for DATELITERAL.
7778
*
7879
*======================================================================================
7980
*
@@ -937,9 +938,9 @@ IDENTIFIER : (~[\[\]\(\)\r\n\t.,'"|!@#$%^&*-+:=; ])+ | L_SQUARE_BRACKET (~[!\]\
937938
938939
939940
// letters
940-
fragment LETTER : [a-zA-Z_äöüÄÖÜ];
941+
fragment LETTER : [a-zA-Z_äöüÄÖÜ];
941942
fragment DIGIT : [0-9];
942-
fragment LETTERORDIGIT : [a-zA-Z0-9_äöüÄÖÜ];
943+
fragment LETTERORDIGIT : [a-zA-Z0-9_äöüÄÖÜ];
943944
944945
// case insensitive chars
945946
fragment A:('a'|'A');
@@ -967,4 +968,4 @@ fragment V:('v'|'V');
967968
fragment W:('w'|'W');
968969
fragment X:('x'|'X');
969970
fragment Y:('y'|'Y');
970-
fragment Z:('z'|'Z');
971+
fragment Z:('z'|'Z');

0 commit comments

Comments
 (0)