Skip to content

Commit 602cafe

Browse files
authored
feat: allow dots in string attributes and strings in general (#58)
1 parent 7be087d commit 602cafe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

uvl/UVLBase.g4

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

150-
STRING: '\''~[\r\n'.]+'\'';
150+
STRING: '\''~[\r\n']+'\'';
151151

152152
SKIP_
153153
: ( SPACES | COMMENT ) -> skip

0 commit comments

Comments
 (0)