From d9b1b117316a8e3bfb2e71582c2ef8c83b1f8de3 Mon Sep 17 00:00:00 2001 From: Miriam Gaus Date: Thu, 5 Jun 2025 14:25:07 +0200 Subject: [PATCH] feat: allow dots in string attributes and strings in general --- uvl/UVLBase.g4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uvl/UVLBase.g4 b/uvl/UVLBase.g4 index 3e60abd..26cfa05 100644 --- a/uvl/UVLBase.g4 +++ b/uvl/UVLBase.g4 @@ -147,7 +147,7 @@ COMMA: ','; ID_NOT_STRICT: '"'~[\r\n".]+'"'; ID_STRICT: [a-zA-Z]([a-zA-Z0-9_] | '#' | '§' | '%' | '?' | '\\' | '\'' | 'ä' | 'ü' | 'ö' | 'ß' | ';')*; -STRING: '\''~[\r\n'.]+'\''; +STRING: '\''~[\r\n']+'\''; SKIP_ : ( SPACES | COMMENT ) -> skip