Skip to content

Commit

Permalink
fixed issue #202: Line end comments can deactivate parts of a table test
Browse files Browse the repository at this point in the history
  • Loading branch information
S1artie committed Oct 15, 2018
1 parent 1745a0e commit 0151eb4
Show file tree
Hide file tree
Showing 8 changed files with 511 additions and 583 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18251,7 +18251,7 @@ RULE_STRING : ('"' ('\\' ('b'|'t'|'n'|'f'|'r'|'u'|'"'|'\''|'\\')|~(('\\'|'"')))*

RULE_ML_COMMENT : '/*' ~('*') ( options {greedy=false;} : . )*'*/';

RULE_SL_COMMENT : '//' ~(('\n'|'\r'))* ('\r'? '\n')?;
RULE_SL_COMMENT : '//' ~(('\n'|'\r'))*;

RULE_SL_VISIBLE_COMMENT : '-- ' ~(('\n'|'\r'))*;

Expand Down
Loading

0 comments on commit 0151eb4

Please sign in to comment.