We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9c2834 commit ca9f3e1Copy full SHA for ca9f3e1
Rubberduck.Parsing/Grammar/VBALexer.g4
@@ -305,7 +305,7 @@ SINGLEQUOTE : '\'';
305
UNDERSCORE : '_';
306
WS : [ \t];
307
GUIDLITERAL : '{' [0-9A-F]+ '-' [0-9A-F]+ '-' [0-9A-F]+ '-' [0-9A-F]+ '-' [0-9A-F]+ '}';
308
-IDENTIFIER : ~[[\](){}\r\n\t.,'"|!@#$%^&*\-+:=; 0-9-/\\-] ~[[\](){}\r\n\t.,'"|!@#$%^&*\-+:=; -]*;
+IDENTIFIER : ~[[\](){}\r\n\t.,'"|!@#$%^&*\-+:=; 0-9/\\] ~[[\](){}\r\n\t.,'"|!@#$%^&*\-+:=; ]*;
309
LINE_CONTINUATION : [ \t]+ UNDERSCORE [ \t]* '\r'? '\n' WS_NOT_FOLLOWED_BY_LINE_CONTINUATION*;
310
// The following rule is needed in order to capture hex literals without format prefixes which start with a digit. Needed for VBForm resources.
311
BARE_HEX_LITERAL : [0-9] [0-9a-fA-F]*;
0 commit comments