File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Rubberduck.Parsing/Grammar Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -305,10 +305,10 @@ LINE_CONTINUATION : [ \t]+ UNDERSCORE [ \t]* '\r'? '\n' WS_NOT_FOLLOWED_BY_LINE_
305
305
// The following rule is needed in order to capture hex literals without format prefixes which start with a digit. Needed for VBForm resources.
306
306
BARE_HEX_LITERAL : [0-9] [0-9a-fA-F]*;
307
307
fragment WS_NOT_FOLLOWED_BY_LINE_CONTINUATION : [ \t ] {(char)_input.La(1) != '_'
308
- || ((char)_input.La(2) != '\r '
309
- && (char)_input.La(2) != '\n '
310
- && (char)_input.La(2) != '\t '
311
- && (char)_input.La(2) != ' ')}?;
308
+ || ((char)_input.La(2) != '\r '
309
+ && (char)_input.La(2) != '\n '
310
+ && (char)_input.La(2) != '\t '
311
+ && (char)_input.La(2) != ' ')}?;
312
312
fragment LETTER : [a-zA-Z_äöüÄÖÜ];
313
313
fragment DIGIT : [0-9];
314
314
fragment LETTERORDIGIT : [a-zA-Z0-9_äöüÄÖÜ];
You can’t perform that action at this time.
0 commit comments