Skip to content

Commit

Permalink
rule -> arule in ATL grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
parrt committed Oct 31, 2015
1 parent 98b8056 commit 305af58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions atl/ATL.g4
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ query : 'query' (STRING|IDENTIFIER) '=' oclExpression ';' libraryRef* helper*;

libraryRef : 'uses' STRING ';';

moduleElement : helper | rule;
moduleElement : helper | arule;

helper : 'helper' oclFeatureDefinition ';';

Expand All @@ -56,7 +56,7 @@ parameter : IDENTIFIER ':' oclType;

attribute : IDENTIFIER ':' oclType '=' oclExpression;

rule : calledRule | matchedRule;
arule : calledRule | matchedRule;

matchedRule : lazyMatchedRule | matchedRule_abstractContents;

Expand Down Expand Up @@ -337,4 +337,4 @@ COMMENT
LINE_COMMENT
: '--' ~[\r\n]* -> skip
;
;

0 comments on commit 305af58

Please sign in to comment.