Skip to content

Commit

Permalink
Update VBA.g4
Browse files Browse the repository at this point in the history
added to changelog
  • Loading branch information
retailcoder committed Feb 11, 2016
1 parent 5015d6f commit f166f79
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Rubberduck.Parsing/Grammar/VBA.g4
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
* - fixed precompiler directives, which can now be nested. they still can't interfere with other blocks though.
* - optional parameters can be a valueStmt.
* - added support for Octal and Currency literals.
* - implemented proper specs for DATELITERAL.
*
*======================================================================================
*
Expand Down Expand Up @@ -937,9 +938,9 @@ IDENTIFIER : (~[\[\]\(\)\r\n\t.,'"|!@#$%^&*-+:=; ])+ | L_SQUARE_BRACKET (~[!\]\
// letters
fragment LETTER : [a-zA-Z_äöüÄÖÜ];
fragment LETTER : [a-zA-Z_äöüÄÖÜ];
fragment DIGIT : [0-9];
fragment LETTERORDIGIT : [a-zA-Z0-9_äöüÄÖÜ];
fragment LETTERORDIGIT : [a-zA-Z0-9_äöüÄÖÜ];
// case insensitive chars
fragment A:('a'|'A');
Expand Down Expand Up @@ -967,4 +968,4 @@ fragment V:('v'|'V');
fragment W:('w'|'W');
fragment X:('x'|'X');
fragment Y:('y'|'Y');
fragment Z:('z'|'Z');
fragment Z:('z'|'Z');

0 comments on commit f166f79

Please sign in to comment.