summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-09-20 17:19:42 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-09-20 17:19:42 +0200
commitbc3e8933e1005e93e4a97b9a207cb40db454a2a8 (patch)
treec6b6431a7ab6e1188faab80efb2d89712d4b48a6 /instr-to-kodkod/parser/PropertyLexer.g4
parent71e7acf1ac104258a295a2662d6dc71f49ac77aa (diff)
Solves the missing solutions bug. Starts PropDeps.
Diffstat (limited to 'instr-to-kodkod/parser/PropertyLexer.g4')
-rw-r--r--instr-to-kodkod/parser/PropertyLexer.g44
1 files changed, 2 insertions, 2 deletions
diff --git a/instr-to-kodkod/parser/PropertyLexer.g4 b/instr-to-kodkod/parser/PropertyLexer.g4
index 3b6011d..e100efb 100644
--- a/instr-to-kodkod/parser/PropertyLexer.g4
+++ b/instr-to-kodkod/parser/PropertyLexer.g4
@@ -37,7 +37,7 @@ DEPTH_NO_CHANGE_OPERATOR_KW: ('(NDCB' | '(does_not_change_depth_before') SEP;
WS: SEP;
-ID: [a-zA-Z0-9_]+;
+ID: [a-zA-Z0-9_~]+;
STRING: '"' ~('\r' | '\n' | '"')* '"';
-COMMENT: ';;' .*? '\n' -> channel(HIDDEN);
+COMMENT: (';;'|'#require') .*? '\n' -> channel(HIDDEN);