Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* generated by Xtext 2.33.0
* generated by Xtext 2.38.0
*/
package de.fraunhofer.ipa.rossystem.ide;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* generated by Xtext 2.33.0
* generated by Xtext 2.38.0
*/
package de.fraunhofer.ipa.rossystem.ide.contentassist.antlr;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* generated by Xtext 2.33.0
* generated by Xtext 2.38.0
*/
package de.fraunhofer.ipa.rossystem.ide.contentassist.antlr;

Expand Down Expand Up @@ -61,6 +61,7 @@ private static void init(ImmutableMap.Builder<AbstractElement, String> builder,
builder.put(grammarAccess.getRosNodeAccess().getGroup_6(), "rule__RosNode__Group_6__0");
builder.put(grammarAccess.getRosNodeAccess().getGroup_7(), "rule__RosNode__Group_7__0");
builder.put(grammarAccess.getRosNodeAccess().getGroup_8(), "rule__RosNode__Group_8__0");
builder.put(grammarAccess.getRosNodeAccess().getGroup_9(), "rule__RosNode__Group_9__0");
builder.put(grammarAccess.getRosInterfaceAccess().getGroup(), "rule__RosInterface__Group__0");
builder.put(grammarAccess.getRosPublisherReferenceAccess().getGroup(), "rule__RosPublisherReference__Group__0");
builder.put(grammarAccess.getRosSubscriberReferenceAccess().getGroup(), "rule__RosSubscriberReference__Group__0");
Expand Down Expand Up @@ -163,6 +164,7 @@ private static void init(ImmutableMap.Builder<AbstractElement, String> builder,
builder.put(grammarAccess.getRosNodeAccess().getNamespaceAssignment_6_1(), "rule__RosNode__NamespaceAssignment_6_1");
builder.put(grammarAccess.getRosNodeAccess().getRosinterfacesAssignment_7_2(), "rule__RosNode__RosinterfacesAssignment_7_2");
builder.put(grammarAccess.getRosNodeAccess().getRosparametersAssignment_8_2(), "rule__RosNode__RosparametersAssignment_8_2");
builder.put(grammarAccess.getRosNodeAccess().getParentAssignment_9_1(), "rule__RosNode__ParentAssignment_9_1");
builder.put(grammarAccess.getRosInterfaceAccess().getNameAssignment_1(), "rule__RosInterface__NameAssignment_1");
builder.put(grammarAccess.getRosInterfaceAccess().getReferenceAssignment_3(), "rule__RosInterface__ReferenceAssignment_3");
builder.put(grammarAccess.getRosPublisherReferenceAccess().getFromAssignment_2(), "rule__RosPublisherReference__FromAssignment_2");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* generated by Xtext 2.33.0
* generated by Xtext 2.38.0
*/
parser grammar InternalRosSystemParser;

Expand Down Expand Up @@ -111,6 +111,7 @@ import de.fraunhofer.ipa.rossystem.services.RosSystemGrammarAccess;
tokenNameToValue.put("SubSystems", "'subSystems:'");
tokenNameToValue.put("ParameterAny", "'ParameterAny'");
tokenNameToValue.put("Connections", "'connections:'");
tokenNameToValue.put("Parent_node", "'parent_node:'");
tokenNameToValue.put("GlobalNamespace", "'GlobalNamespace'");
tokenNameToValue.put("PrivateNamespace", "'PrivateNamespace'");
tokenNameToValue.put("RelativeNamespace", "'RelativeNamespace'");
Expand Down Expand Up @@ -4341,6 +4342,7 @@ rule__RosNode__Group__9
}
:
rule__RosNode__Group__9__Impl
rule__RosNode__Group__10
;
finally {
restoreStackSize(stackSize);
Expand All @@ -4352,9 +4354,35 @@ rule__RosNode__Group__9__Impl
}
:
(
{ before(grammarAccess.getRosNodeAccess().getENDTerminalRuleCall_9()); }
{ before(grammarAccess.getRosNodeAccess().getGroup_9()); }
(rule__RosNode__Group_9__0)?
{ after(grammarAccess.getRosNodeAccess().getGroup_9()); }
)
;
finally {
restoreStackSize(stackSize);
}

rule__RosNode__Group__10
@init {
int stackSize = keepStackSize();
}
:
rule__RosNode__Group__10__Impl
;
finally {
restoreStackSize(stackSize);
}

rule__RosNode__Group__10__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getRosNodeAccess().getENDTerminalRuleCall_10()); }
RULE_END
{ after(grammarAccess.getRosNodeAccess().getENDTerminalRuleCall_9()); }
{ after(grammarAccess.getRosNodeAccess().getENDTerminalRuleCall_10()); }
)
;
finally {
Expand Down Expand Up @@ -4632,6 +4660,60 @@ finally {
}


rule__RosNode__Group_9__0
@init {
int stackSize = keepStackSize();
}
:
rule__RosNode__Group_9__0__Impl
rule__RosNode__Group_9__1
;
finally {
restoreStackSize(stackSize);
}

rule__RosNode__Group_9__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getRosNodeAccess().getParent_nodeKeyword_9_0()); }
Parent_node
{ after(grammarAccess.getRosNodeAccess().getParent_nodeKeyword_9_0()); }
)
;
finally {
restoreStackSize(stackSize);
}

rule__RosNode__Group_9__1
@init {
int stackSize = keepStackSize();
}
:
rule__RosNode__Group_9__1__Impl
;
finally {
restoreStackSize(stackSize);
}

rule__RosNode__Group_9__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getRosNodeAccess().getParentAssignment_9_1()); }
(rule__RosNode__ParentAssignment_9_1)
{ after(grammarAccess.getRosNodeAccess().getParentAssignment_9_1()); }
)
;
finally {
restoreStackSize(stackSize);
}


rule__RosInterface__Group__0
@init {
int stackSize = keepStackSize();
Expand Down Expand Up @@ -11113,6 +11195,25 @@ finally {
restoreStackSize(stackSize);
}

rule__RosNode__ParentAssignment_9_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getRosNodeAccess().getParentNodeCrossReference_9_1_0()); }
(
{ before(grammarAccess.getRosNodeAccess().getParentNodeEStringParserRuleCall_9_1_0_1()); }
ruleEString
{ after(grammarAccess.getRosNodeAccess().getParentNodeEStringParserRuleCall_9_1_0_1()); }
)
{ after(grammarAccess.getRosNodeAccess().getParentNodeCrossReference_9_1_0()); }
)
;
finally {
restoreStackSize(stackSize);
}

rule__RosInterface__NameAssignment_1
@init {
int stackSize = keepStackSize();
Expand Down
Loading
Loading