mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 08:48:55 +00:00
[263773] Removed unused rule from Xtext.xtext, made guards ‘usual’ expression
This commit is contained in:
parent
6627e289a7
commit
fd0cf968e7
1 changed files with 2 additions and 10 deletions
|
@ -116,11 +116,7 @@ RuleCall :
|
|||
|
||||
NamedArgument:
|
||||
( parameter=[Parameter|ID] calledByName?= '=')?
|
||||
( value=ConditionOrLiteral )
|
||||
;
|
||||
|
||||
ConditionOrLiteral returns Condition:
|
||||
LiteralCondition | Disjunction
|
||||
( value=Disjunction )
|
||||
;
|
||||
|
||||
LiteralCondition:
|
||||
|
@ -140,7 +136,7 @@ Negation returns Condition:
|
|||
;
|
||||
|
||||
Atom returns Condition:
|
||||
ParameterReference | ParenthesizedCondition
|
||||
ParameterReference | ParenthesizedCondition | LiteralCondition
|
||||
;
|
||||
|
||||
ParenthesizedCondition returns Condition:
|
||||
|
@ -163,10 +159,6 @@ ValidID returns ecore::EString:
|
|||
ID | 'true' | 'false'
|
||||
;
|
||||
|
||||
Boolean returns ecore::EBoolean:
|
||||
'true' | 'false'
|
||||
;
|
||||
|
||||
PredicatedKeyword returns Keyword:
|
||||
(predicated?='=>' | firstSetPredicated?='->') value=STRING
|
||||
;
|
||||
|
|
Loading…
Reference in a new issue