Skip to content

Commit c425f25

Browse files
committed
Clean and re-generate grammar backend
1 parent 5cc9ceb commit c425f25

File tree

12 files changed

+464
-440
lines changed

12 files changed

+464
-440
lines changed

plugins/eu.coresense.CognitiveModule.xtext.ide/META-INF/MANIFEST.MF

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ Require-Bundle: eu.coresense.CognitiveModule.xtext,
1010
eu.coresense.CognitiveModule,
1111
org.eclipse.xtext.ide,
1212
org.eclipse.xtext.xbase.ide,
13-
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)"
13+
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)",
14+
org.eclipse.lsp4j.jsonrpc,
15+
org.eclipse.lsp4j,
16+
com.google.gson
1417
Bundle-RequiredExecutionEnvironment: JavaSE-21
1518
Export-Package: eu.coresense.cognitivemodule.ide.contentassist.antlr.internal,
1619
eu.coresense.cognitivemodule.ide.contentassist.antlr,

plugins/eu.coresense.CognitiveModule.xtext.ide/src-gen/eu/coresense/cognitivemodule/ide/contentassist/antlr/internal/InternalCogModParser.g

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -84,31 +84,6 @@ finally {
8484
restoreStackSize(stackSize);
8585
}
8686

87-
// Entry rule entryRuleEString
88-
entryRuleEString
89-
:
90-
{ before(grammarAccess.getEStringRule()); }
91-
ruleEString
92-
{ after(grammarAccess.getEStringRule()); }
93-
EOF
94-
;
95-
96-
// Rule EString
97-
ruleEString
98-
@init {
99-
int stackSize = keepStackSize();
100-
}
101-
:
102-
(
103-
{ before(grammarAccess.getEStringAccess().getAlternatives()); }
104-
(rule__EString__Alternatives)
105-
{ after(grammarAccess.getEStringAccess().getAlternatives()); }
106-
)
107-
;
108-
finally {
109-
restoreStackSize(stackSize);
110-
}
111-
11287
// Entry rule entryRuleCore
11388
entryRuleCore
11489
:
@@ -209,6 +184,31 @@ finally {
209184
restoreStackSize(stackSize);
210185
}
211186

187+
// Entry rule entryRuleEString
188+
entryRuleEString
189+
:
190+
{ before(grammarAccess.getEStringRule()); }
191+
ruleEString
192+
{ after(grammarAccess.getEStringRule()); }
193+
EOF
194+
;
195+
196+
// Rule EString
197+
ruleEString
198+
@init {
199+
int stackSize = keepStackSize();
200+
}
201+
:
202+
(
203+
{ before(grammarAccess.getEStringAccess().getAlternatives()); }
204+
(rule__EString__Alternatives)
205+
{ after(grammarAccess.getEStringAccess().getAlternatives()); }
206+
)
207+
;
208+
finally {
209+
restoreStackSize(stackSize);
210+
}
211+
212212
rule__EString__Alternatives
213213
@init {
214214
int stackSize = keepStackSize();

0 commit comments

Comments
 (0)