Skip to content

Commit 26babba

Browse files
committed
Fix: dots are allowed again in string constants
1 parent 68c1ed6 commit 26babba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uvl/UVLLexer.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ DOT: '.';
7171
ID_NOT_STRICT: '"'~[\r\n".]+'"';
7272
ID_STRICT: [a-zA-Z]([a-zA-Z0-9_#§%?\\'äüöß;])*;
7373

74-
STRING: '\''~[\r\n'.]+'\'';
74+
STRING: '\''~[\r\n']+'\'';
7575

7676
SKIP_: ( SPACES | COMMENT) -> skip;
7777

0 commit comments

Comments
 (0)