Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.core.fsm/src/org/eclipse/etrice/core/fsm/FSM.xtext')
-rw-r--r--plugins/org.eclipse.etrice.core.fsm/src/org/eclipse/etrice/core/fsm/FSM.xtext8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.etrice.core.fsm/src/org/eclipse/etrice/core/fsm/FSM.xtext b/plugins/org.eclipse.etrice.core.fsm/src/org/eclipse/etrice/core/fsm/FSM.xtext
index 4d98800ad..5018774a5 100644
--- a/plugins/org.eclipse.etrice.core.fsm/src/org/eclipse/etrice/core/fsm/FSM.xtext
+++ b/plugins/org.eclipse.etrice.core.fsm/src/org/eclipse/etrice/core/fsm/FSM.xtext
@@ -206,10 +206,10 @@ Trigger:
//
MessageFromIf:
- message=[AbstractMessage|ID] ':' from=[AbstractInterfaceItem|ID]
+ message=[ecore::EObject|ID] ':' from=[AbstractInterfaceItem|ID]
;
-AbstractMessage: name=ID;
+// AbstractMessage: name=ID; --> ecore::EObject
AbstractInterfaceItem: name=ID;
Guard:
@@ -227,7 +227,7 @@ ProtocolSemantics:
SemanticsRule: InSemanticsRule | OutSemanticsRule;
-InSemanticsRule: 'in' ':' msg=[AbstractMessage|ID]
+InSemanticsRule: 'in' ':' msg=[ecore::EObject|ID]
('->'
(
followUps+=SemanticsRule
@@ -237,7 +237,7 @@ InSemanticsRule: 'in' ':' msg=[AbstractMessage|ID]
)?
;
-OutSemanticsRule: 'out' ':' msg=[AbstractMessage|ID]
+OutSemanticsRule: 'out' ':' msg=[ecore::EObject|ID]
('->'
(
followUps+=SemanticsRule

Back to the top