1
0

Fix Identifier in Grammar

This commit is contained in:
Andreas Stadelmeier 2024-11-28 13:09:25 +01:00
parent cddf3ccece
commit 163e130b13

View File

@ -17,7 +17,7 @@ tph : '_' IDENTIFIER;
namedType : IDENTIFIER params?;
params : '<' type (',' type)* '>';
IDENTIFIER: [0-9A-Za-z.]+;
IDENTIFIER: [0-9A-Za-z.$[;][0-9A-Za-z.$[;_]*;
NEWLINE : [\r\n]+ -> skip;
WS: [ \t] -> skip ;