File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Rubberduck.Parsing/Grammar Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 74
74
* - fixed precompiler directives, which can now be nested. they still can't interfere with other blocks though.
75
75
* - optional parameters can be a valueStmt.
76
76
* - added support for Octal and Currency literals.
77
+ * - implemented proper specs for DATELITERAL.
77
78
*
78
79
*======================================================================================
79
80
*
@@ -937,9 +938,9 @@ IDENTIFIER : (~[\[\]\(\)\r\n\t.,'"|!@#$%^&*-+:=; ])+ | L_SQUARE_BRACKET (~[!\]\
937
938
938
939
939
940
// letters
940
- fragment LETTER : [a-zA-Z_äöüÄÖÜ];
941
+ fragment LETTER : [a-zA-Z_äöüÄÖÜ];
941
942
fragment DIGIT : [0-9];
942
- fragment LETTERORDIGIT : [a-zA-Z0-9_äöüÄÖÜ];
943
+ fragment LETTERORDIGIT : [a-zA-Z0-9_äöüÄÖÜ];
943
944
944
945
// case insensitive chars
945
946
fragment A:(' a' |' A ' );
@@ -967,4 +968,4 @@ fragment V:('v'|'V');
967
968
fragment W:(' w' |' W ' );
968
969
fragment X:(' x' |' X ' );
969
970
fragment Y:(' y' |' Y ' );
970
- fragment Z:(' z' |' Z ' );
971
+ fragment Z:(' z' |' Z ' );
You can’t perform that action at this time.
0 commit comments