We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95fe0c3 commit 7ffb695Copy full SHA for 7ffb695
dartagnan/src/main/antlr4/Cat.g4
@@ -5,7 +5,7 @@ import com.dat3m.dartagnan.wmm.axiom.*;
5
}
6
7
mcm
8
- : (NAME)? (QUOTED_STRING)? (definition | include)+ EOF
+ : (NAME)? (QUOTED_STRING)? (definition | include | show)+ EOF
9
;
10
11
definition
@@ -58,7 +58,11 @@ expression
58
59
60
include
61
- : 'include' path = QUOTED_STRING
+ : INCLUDE path = QUOTED_STRING
62
+ ;
63
+
64
+show
65
+ : SHOW expression (AS NAME)?
66
67
68
parameterList
@@ -74,6 +78,8 @@ REC : 'rec';
74
78
AND : 'and';
75
79
AS : 'as';
76
80
TOID : 'toid';
81
+SHOW : 'show';
82
+INCLUDE : 'include';
77
83
84
ACYCLIC : 'acyclic';
85
IRREFLEXIVE : 'irreflexive';
0 commit comments