Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.emf.ecore.xcore/src/org/eclipse/emf/ecore/xcore/Xcore.xtext')
-rw-r--r--org.eclipse.emf.ecore.xcore/src/org/eclipse/emf/ecore/xcore/Xcore.xtext4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.emf.ecore.xcore/src/org/eclipse/emf/ecore/xcore/Xcore.xtext b/org.eclipse.emf.ecore.xcore/src/org/eclipse/emf/ecore/xcore/Xcore.xtext
index 122fec6e1..28ac86405 100644
--- a/org.eclipse.emf.ecore.xcore/src/org/eclipse/emf/ecore/xcore/Xcore.xtext
+++ b/org.eclipse.emf.ecore.xcore/src/org/eclipse/emf/ecore/xcore/Xcore.xtext
@@ -138,7 +138,7 @@ XReference:
(unsettable?='unsettable')? &
(derived?='derived')?
)
- (type=XGenericType | 'void')
+ type=XGenericType
multiplicity=XMultiplicity?
name=ID
(
@@ -166,7 +166,7 @@ XOperation:
unique?='unique' unordered?='unordered'?
)?
('<' typeParameters+=XTypeParameter (',' typeParameters+=XTypeParameter)* '>')?
- type=XGenericType
+ (type=XGenericType | 'void')
multiplicity=XMultiplicity?
name=ID
'(' (parameters+=XParameter (',' parameters+=XParameter)*)? ')'

Back to the top