File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,13 @@ grammar ContextMapperDsl
22
33terminal ID: /[_a-zA-Z][\w_]*/;
44terminal STRING: /"(\\.|[^"\\])*"|'(\\.|[^'\\])*'/;
5- terminal ML_COMMENT: /\/\*[\s\S]*?\*\//;
6- terminal SL_COMMENT: /\/\/[^\n\r]*/;
75
86terminal OPEN: '{';
97terminal CLOSE: '}';
108
119hidden terminal WS: /\s+/;
12- hidden terminal HIDDEN_ML_COMMENT: ML_COMMENT ;
13- hidden terminal HIDDEN_SL_COMMENT: SL_COMMENT ;
10+ hidden terminal ML_COMMENT: /\/\*[\s\S]*?\*\// ;
11+ hidden terminal SL_COMMENT: /\/\/[^\n\r]*/ ;
1412
1513entry ContextMappingModel:
1614 (
@@ -169,7 +167,7 @@ CustomerSupplierRelationship:
169167 (OPEN
170168 (
171169 ('implementationTechnology' ('=')? implementationTechnology=STRING) &
172- (('exposedAggregates' ('=')? upstreamExposedAggregates+=[Aggregate]) ("," upstreamExposedAggregates+=[Aggregate])* (exposedAggregatesComment=SL_COMMENT)? ) &
170+ (('exposedAggregates' ('=')? upstreamExposedAggregates+=[Aggregate]) ("," upstreamExposedAggregates+=[Aggregate])*) &
173171 ('downstreamRights' ('=')? downstreamGovernanceRights=DownstreamGovernanceRights)
174172 )
175173 CLOSE)?
You can’t perform that action at this time.
0 commit comments