blob: 3d668f8d4298e265d3ae5def64541c19ab56f2b6 [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*/
grammar InternalBlipDSL;
options {
superClass=AbstractInternalContentAssistParser;
backtrack=true;
}
@lexer::header {
package org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal;
// Hack: Use our own Lexer superclass by means of import.
// Currently there is no other way to specify the superclass for the lexer.
import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.Lexer;
}
@parser::header {
package org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal;
import java.io.InputStream;
import org.eclipse.xtext.*;
import org.eclipse.xtext.parser.*;
import org.eclipse.xtext.parser.impl.*;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.xtext.parser.antlr.XtextTokenStream;
import org.eclipse.xtext.parser.antlr.XtextTokenStream.HiddenTokens;
import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.AbstractInternalContentAssistParser;
import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.DFA;
import org.eclipse.osbp.xtext.blip.services.BlipDSLGrammarAccess;
}
@parser::members {
private BlipDSLGrammarAccess grammarAccess;
public void setGrammarAccess(BlipDSLGrammarAccess grammarAccess) {
this.grammarAccess = grammarAccess;
}
@Override
protected Grammar getGrammar() {
return grammarAccess.getGrammar();
}
@Override
protected String getValueForTokenName(String tokenName) {
return tokenName;
}
}
// Entry rule entryRuleBlipModel
entryRuleBlipModel
:
{ before(grammarAccess.getBlipModelRule()); }
ruleBlipModel
{ after(grammarAccess.getBlipModelRule()); }
EOF
;
// Rule BlipModel
ruleBlipModel
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipModelAccess().getPackagesAssignment()); }
(rule__BlipModel__PackagesAssignment)*
{ after(grammarAccess.getBlipModelAccess().getPackagesAssignment()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipPackage
entryRuleBlipPackage
:
{ before(grammarAccess.getBlipPackageRule()); }
ruleBlipPackage
{ after(grammarAccess.getBlipPackageRule()); }
EOF
;
// Rule BlipPackage
ruleBlipPackage
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPackageAccess().getGroup()); }
(rule__BlipPackage__Group__0)
{ after(grammarAccess.getBlipPackageAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlip
entryRuleBlip
:
{ before(grammarAccess.getBlipRule()); }
ruleBlip
{ after(grammarAccess.getBlipRule()); }
EOF
;
// Rule Blip
ruleBlip
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getGroup()); }
(rule__Blip__Group__0)
{ after(grammarAccess.getBlipAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipWorkload
entryRuleBlipWorkload
:
{ before(grammarAccess.getBlipWorkloadRule()); }
ruleBlipWorkload
{ after(grammarAccess.getBlipWorkloadRule()); }
EOF
;
// Rule BlipWorkload
ruleBlipWorkload
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipWorkloadAccess().getGroup()); }
(rule__BlipWorkload__Group__0)
{ after(grammarAccess.getBlipWorkloadAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipFilter
entryRuleBlipFilter
:
{ before(grammarAccess.getBlipFilterRule()); }
ruleBlipFilter
{ after(grammarAccess.getBlipFilterRule()); }
EOF
;
// Rule BlipFilter
ruleBlipFilter
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipFilterAccess().getGroup()); }
(rule__BlipFilter__Group__0)
{ after(grammarAccess.getBlipFilterAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipDto
entryRuleBlipDto
:
{ before(grammarAccess.getBlipDtoRule()); }
ruleBlipDto
{ after(grammarAccess.getBlipDtoRule()); }
EOF
;
// Rule BlipDto
ruleBlipDto
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipDtoAccess().getGroup()); }
(rule__BlipDto__Group__0)
{ after(grammarAccess.getBlipDtoAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipItem
entryRuleBlipItem
:
{ before(grammarAccess.getBlipItemRule()); }
ruleBlipItem
{ after(grammarAccess.getBlipItemRule()); }
EOF
;
// Rule BlipItem
ruleBlipItem
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipItemAccess().getAlternatives()); }
(rule__BlipItem__Alternatives)
{ after(grammarAccess.getBlipItemAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipStartEvent
entryRuleBlipStartEvent
:
{ before(grammarAccess.getBlipStartEventRule()); }
ruleBlipStartEvent
{ after(grammarAccess.getBlipStartEventRule()); }
EOF
;
// Rule BlipStartEvent
ruleBlipStartEvent
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipStartEventAccess().getGroup()); }
(rule__BlipStartEvent__Group__0)
{ after(grammarAccess.getBlipStartEventAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipEndEvent
entryRuleBlipEndEvent
:
{ before(grammarAccess.getBlipEndEventRule()); }
ruleBlipEndEvent
{ after(grammarAccess.getBlipEndEventRule()); }
EOF
;
// Rule BlipEndEvent
ruleBlipEndEvent
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipEndEventAccess().getGroup()); }
(rule__BlipEndEvent__Group__0)
{ after(grammarAccess.getBlipEndEventAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipUserTask
entryRuleBlipUserTask
:
{ before(grammarAccess.getBlipUserTaskRule()); }
ruleBlipUserTask
{ after(grammarAccess.getBlipUserTaskRule()); }
EOF
;
// Rule BlipUserTask
ruleBlipUserTask
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getGroup()); }
(rule__BlipUserTask__Group__0)
{ after(grammarAccess.getBlipUserTaskAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipCallActivity
entryRuleBlipCallActivity
:
{ before(grammarAccess.getBlipCallActivityRule()); }
ruleBlipCallActivity
{ after(grammarAccess.getBlipCallActivityRule()); }
EOF
;
// Rule BlipCallActivity
ruleBlipCallActivity
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getGroup()); }
(rule__BlipCallActivity__Group__0)
{ after(grammarAccess.getBlipCallActivityAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipScriptTask
entryRuleBlipScriptTask
:
{ before(grammarAccess.getBlipScriptTaskRule()); }
ruleBlipScriptTask
{ after(grammarAccess.getBlipScriptTaskRule()); }
EOF
;
// Rule BlipScriptTask
ruleBlipScriptTask
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipScriptTaskAccess().getGroup()); }
(rule__BlipScriptTask__Group__0)
{ after(grammarAccess.getBlipScriptTaskAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipPersistTask
entryRuleBlipPersistTask
:
{ before(grammarAccess.getBlipPersistTaskRule()); }
ruleBlipPersistTask
{ after(grammarAccess.getBlipPersistTaskRule()); }
EOF
;
// Rule BlipPersistTask
ruleBlipPersistTask
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPersistTaskAccess().getGroup()); }
(rule__BlipPersistTask__Group__0)
{ after(grammarAccess.getBlipPersistTaskAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipServiceTask
entryRuleBlipServiceTask
:
{ before(grammarAccess.getBlipServiceTaskRule()); }
ruleBlipServiceTask
{ after(grammarAccess.getBlipServiceTaskRule()); }
EOF
;
// Rule BlipServiceTask
ruleBlipServiceTask
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getGroup()); }
(rule__BlipServiceTask__Group__0)
{ after(grammarAccess.getBlipServiceTaskAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipOutGoing
entryRuleBlipOutGoing
:
{ before(grammarAccess.getBlipOutGoingRule()); }
ruleBlipOutGoing
{ after(grammarAccess.getBlipOutGoingRule()); }
EOF
;
// Rule BlipOutGoing
ruleBlipOutGoing
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingAccess().getGroup()); }
(rule__BlipOutGoing__Group__0)
{ after(grammarAccess.getBlipOutGoingAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipOutGoingDefault
entryRuleBlipOutGoingDefault
:
{ before(grammarAccess.getBlipOutGoingDefaultRule()); }
ruleBlipOutGoingDefault
{ after(grammarAccess.getBlipOutGoingDefaultRule()); }
EOF
;
// Rule BlipOutGoingDefault
ruleBlipOutGoingDefault
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingDefaultAccess().getGroup()); }
(rule__BlipOutGoingDefault__Group__0)
{ after(grammarAccess.getBlipOutGoingDefaultAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipExclusiveSplitGateway
entryRuleBlipExclusiveSplitGateway
:
{ before(grammarAccess.getBlipExclusiveSplitGatewayRule()); }
ruleBlipExclusiveSplitGateway
{ after(grammarAccess.getBlipExclusiveSplitGatewayRule()); }
EOF
;
// Rule BlipExclusiveSplitGateway
ruleBlipExclusiveSplitGateway
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGroup()); }
(rule__BlipExclusiveSplitGateway__Group__0)
{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipInclusiveSplitGateway
entryRuleBlipInclusiveSplitGateway
:
{ before(grammarAccess.getBlipInclusiveSplitGatewayRule()); }
ruleBlipInclusiveSplitGateway
{ after(grammarAccess.getBlipInclusiveSplitGatewayRule()); }
EOF
;
// Rule BlipInclusiveSplitGateway
ruleBlipInclusiveSplitGateway
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGroup()); }
(rule__BlipInclusiveSplitGateway__Group__0)
{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleBlipDtoPath
entryRuleBlipDtoPath
:
{ before(grammarAccess.getBlipDtoPathRule()); }
ruleBlipDtoPath
{ after(grammarAccess.getBlipDtoPathRule()); }
EOF
;
// Rule BlipDtoPath
ruleBlipDtoPath
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipDtoPathAccess().getGroup()); }
(rule__BlipDtoPath__Group__0)
{ after(grammarAccess.getBlipDtoPathAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleQualifiedDtoPath
entryRuleQualifiedDtoPath
:
{ before(grammarAccess.getQualifiedDtoPathRule()); }
ruleQualifiedDtoPath
{ after(grammarAccess.getQualifiedDtoPathRule()); }
EOF
;
// Rule QualifiedDtoPath
ruleQualifiedDtoPath
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedDtoPathAccess().getGroup()); }
(rule__QualifiedDtoPath__Group__0)
{ after(grammarAccess.getQualifiedDtoPathAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleQualifiedName
entryRuleQualifiedName
:
{ before(grammarAccess.getQualifiedNameRule()); }
ruleQualifiedName
{ after(grammarAccess.getQualifiedNameRule()); }
EOF
;
// Rule QualifiedName
ruleQualifiedName
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedNameAccess().getGroup()); }
(rule__QualifiedName__Group__0)
{ after(grammarAccess.getQualifiedNameAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleValidID
entryRuleValidID
:
{ before(grammarAccess.getValidIDRule()); }
ruleValidID
{ after(grammarAccess.getValidIDRule()); }
EOF
;
// Rule ValidID
ruleValidID
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); }
RULE_ID
{ after(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleTRANSLATABLEID
entryRuleTRANSLATABLEID
:
{ before(grammarAccess.getTRANSLATABLEIDRule()); }
ruleTRANSLATABLEID
{ after(grammarAccess.getTRANSLATABLEIDRule()); }
EOF
;
// Rule TRANSLATABLEID
ruleTRANSLATABLEID
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getTRANSLATABLEIDAccess().getIDTerminalRuleCall()); }
RULE_ID
{ after(grammarAccess.getTRANSLATABLEIDAccess().getIDTerminalRuleCall()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleTRANSLATABLESTRING
entryRuleTRANSLATABLESTRING
:
{ before(grammarAccess.getTRANSLATABLESTRINGRule()); }
ruleTRANSLATABLESTRING
{ after(grammarAccess.getTRANSLATABLESTRINGRule()); }
EOF
;
// Rule TRANSLATABLESTRING
ruleTRANSLATABLESTRING
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getTRANSLATABLESTRINGAccess().getSTRINGTerminalRuleCall()); }
RULE_STRING
{ after(grammarAccess.getTRANSLATABLESTRINGAccess().getSTRINGTerminalRuleCall()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXImportDeclaration
entryRuleXImportDeclaration
:
{ before(grammarAccess.getXImportDeclarationRule()); }
ruleXImportDeclaration
{ after(grammarAccess.getXImportDeclarationRule()); }
EOF
;
// Rule XImportDeclaration
ruleXImportDeclaration
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXImportDeclarationAccess().getGroup()); }
(rule__XImportDeclaration__Group__0)
{ after(grammarAccess.getXImportDeclarationAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXAnnotation
entryRuleXAnnotation
:
{ before(grammarAccess.getXAnnotationRule()); }
ruleXAnnotation
{ after(grammarAccess.getXAnnotationRule()); }
EOF
;
// Rule XAnnotation
ruleXAnnotation
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAnnotationAccess().getGroup()); }
(rule__XAnnotation__Group__0)
{ after(grammarAccess.getXAnnotationAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXAnnotationElementValuePair
entryRuleXAnnotationElementValuePair
:
{ before(grammarAccess.getXAnnotationElementValuePairRule()); }
ruleXAnnotationElementValuePair
{ after(grammarAccess.getXAnnotationElementValuePairRule()); }
EOF
;
// Rule XAnnotationElementValuePair
ruleXAnnotationElementValuePair
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAnnotationElementValuePairAccess().getGroup()); }
(rule__XAnnotationElementValuePair__Group__0)
{ after(grammarAccess.getXAnnotationElementValuePairAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXAnnotationElementValueOrCommaList
entryRuleXAnnotationElementValueOrCommaList
:
{ before(grammarAccess.getXAnnotationElementValueOrCommaListRule()); }
ruleXAnnotationElementValueOrCommaList
{ after(grammarAccess.getXAnnotationElementValueOrCommaListRule()); }
EOF
;
// Rule XAnnotationElementValueOrCommaList
ruleXAnnotationElementValueOrCommaList
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getAlternatives()); }
(rule__XAnnotationElementValueOrCommaList__Alternatives)
{ after(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXAnnotationElementValue
entryRuleXAnnotationElementValue
:
{ before(grammarAccess.getXAnnotationElementValueRule()); }
ruleXAnnotationElementValue
{ after(grammarAccess.getXAnnotationElementValueRule()); }
EOF
;
// Rule XAnnotationElementValue
ruleXAnnotationElementValue
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAnnotationElementValueAccess().getAlternatives()); }
(rule__XAnnotationElementValue__Alternatives)
{ after(grammarAccess.getXAnnotationElementValueAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXAnnotationOrExpression
entryRuleXAnnotationOrExpression
:
{ before(grammarAccess.getXAnnotationOrExpressionRule()); }
ruleXAnnotationOrExpression
{ after(grammarAccess.getXAnnotationOrExpressionRule()); }
EOF
;
// Rule XAnnotationOrExpression
ruleXAnnotationOrExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAnnotationOrExpressionAccess().getAlternatives()); }
(rule__XAnnotationOrExpression__Alternatives)
{ after(grammarAccess.getXAnnotationOrExpressionAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXExpression
entryRuleXExpression
:
{ before(grammarAccess.getXExpressionRule()); }
ruleXExpression
{ after(grammarAccess.getXExpressionRule()); }
EOF
;
// Rule XExpression
ruleXExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXExpressionAccess().getXAssignmentParserRuleCall()); }
ruleXAssignment
{ after(grammarAccess.getXExpressionAccess().getXAssignmentParserRuleCall()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXAssignment
entryRuleXAssignment
:
{ before(grammarAccess.getXAssignmentRule()); }
ruleXAssignment
{ after(grammarAccess.getXAssignmentRule()); }
EOF
;
// Rule XAssignment
ruleXAssignment
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAssignmentAccess().getAlternatives()); }
(rule__XAssignment__Alternatives)
{ after(grammarAccess.getXAssignmentAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpSingleAssign
entryRuleOpSingleAssign
:
{ before(grammarAccess.getOpSingleAssignRule()); }
ruleOpSingleAssign
{ after(grammarAccess.getOpSingleAssignRule()); }
EOF
;
// Rule OpSingleAssign
ruleOpSingleAssign
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpSingleAssignAccess().getEqualsSignKeyword()); }
'='
{ after(grammarAccess.getOpSingleAssignAccess().getEqualsSignKeyword()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpMultiAssign
entryRuleOpMultiAssign
:
{ before(grammarAccess.getOpMultiAssignRule()); }
ruleOpMultiAssign
{ after(grammarAccess.getOpMultiAssignRule()); }
EOF
;
// Rule OpMultiAssign
ruleOpMultiAssign
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpMultiAssignAccess().getAlternatives()); }
(rule__OpMultiAssign__Alternatives)
{ after(grammarAccess.getOpMultiAssignAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXOrExpression
entryRuleXOrExpression
:
{ before(grammarAccess.getXOrExpressionRule()); }
ruleXOrExpression
{ after(grammarAccess.getXOrExpressionRule()); }
EOF
;
// Rule XOrExpression
ruleXOrExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXOrExpressionAccess().getGroup()); }
(rule__XOrExpression__Group__0)
{ after(grammarAccess.getXOrExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpOr
entryRuleOpOr
:
{ before(grammarAccess.getOpOrRule()); }
ruleOpOr
{ after(grammarAccess.getOpOrRule()); }
EOF
;
// Rule OpOr
ruleOpOr
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpOrAccess().getVerticalLineVerticalLineKeyword()); }
'||'
{ after(grammarAccess.getOpOrAccess().getVerticalLineVerticalLineKeyword()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXAndExpression
entryRuleXAndExpression
:
{ before(grammarAccess.getXAndExpressionRule()); }
ruleXAndExpression
{ after(grammarAccess.getXAndExpressionRule()); }
EOF
;
// Rule XAndExpression
ruleXAndExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAndExpressionAccess().getGroup()); }
(rule__XAndExpression__Group__0)
{ after(grammarAccess.getXAndExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpAnd
entryRuleOpAnd
:
{ before(grammarAccess.getOpAndRule()); }
ruleOpAnd
{ after(grammarAccess.getOpAndRule()); }
EOF
;
// Rule OpAnd
ruleOpAnd
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpAndAccess().getAmpersandAmpersandKeyword()); }
'&&'
{ after(grammarAccess.getOpAndAccess().getAmpersandAmpersandKeyword()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXEqualityExpression
entryRuleXEqualityExpression
:
{ before(grammarAccess.getXEqualityExpressionRule()); }
ruleXEqualityExpression
{ after(grammarAccess.getXEqualityExpressionRule()); }
EOF
;
// Rule XEqualityExpression
ruleXEqualityExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXEqualityExpressionAccess().getGroup()); }
(rule__XEqualityExpression__Group__0)
{ after(grammarAccess.getXEqualityExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpEquality
entryRuleOpEquality
:
{ before(grammarAccess.getOpEqualityRule()); }
ruleOpEquality
{ after(grammarAccess.getOpEqualityRule()); }
EOF
;
// Rule OpEquality
ruleOpEquality
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpEqualityAccess().getAlternatives()); }
(rule__OpEquality__Alternatives)
{ after(grammarAccess.getOpEqualityAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXRelationalExpression
entryRuleXRelationalExpression
:
{ before(grammarAccess.getXRelationalExpressionRule()); }
ruleXRelationalExpression
{ after(grammarAccess.getXRelationalExpressionRule()); }
EOF
;
// Rule XRelationalExpression
ruleXRelationalExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXRelationalExpressionAccess().getGroup()); }
(rule__XRelationalExpression__Group__0)
{ after(grammarAccess.getXRelationalExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpCompare
entryRuleOpCompare
:
{ before(grammarAccess.getOpCompareRule()); }
ruleOpCompare
{ after(grammarAccess.getOpCompareRule()); }
EOF
;
// Rule OpCompare
ruleOpCompare
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpCompareAccess().getAlternatives()); }
(rule__OpCompare__Alternatives)
{ after(grammarAccess.getOpCompareAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXOtherOperatorExpression
entryRuleXOtherOperatorExpression
:
{ before(grammarAccess.getXOtherOperatorExpressionRule()); }
ruleXOtherOperatorExpression
{ after(grammarAccess.getXOtherOperatorExpressionRule()); }
EOF
;
// Rule XOtherOperatorExpression
ruleXOtherOperatorExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXOtherOperatorExpressionAccess().getGroup()); }
(rule__XOtherOperatorExpression__Group__0)
{ after(grammarAccess.getXOtherOperatorExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpOther
entryRuleOpOther
:
{ before(grammarAccess.getOpOtherRule()); }
ruleOpOther
{ after(grammarAccess.getOpOtherRule()); }
EOF
;
// Rule OpOther
ruleOpOther
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpOtherAccess().getAlternatives()); }
(rule__OpOther__Alternatives)
{ after(grammarAccess.getOpOtherAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXAdditiveExpression
entryRuleXAdditiveExpression
:
{ before(grammarAccess.getXAdditiveExpressionRule()); }
ruleXAdditiveExpression
{ after(grammarAccess.getXAdditiveExpressionRule()); }
EOF
;
// Rule XAdditiveExpression
ruleXAdditiveExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAdditiveExpressionAccess().getGroup()); }
(rule__XAdditiveExpression__Group__0)
{ after(grammarAccess.getXAdditiveExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpAdd
entryRuleOpAdd
:
{ before(grammarAccess.getOpAddRule()); }
ruleOpAdd
{ after(grammarAccess.getOpAddRule()); }
EOF
;
// Rule OpAdd
ruleOpAdd
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpAddAccess().getAlternatives()); }
(rule__OpAdd__Alternatives)
{ after(grammarAccess.getOpAddAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXMultiplicativeExpression
entryRuleXMultiplicativeExpression
:
{ before(grammarAccess.getXMultiplicativeExpressionRule()); }
ruleXMultiplicativeExpression
{ after(grammarAccess.getXMultiplicativeExpressionRule()); }
EOF
;
// Rule XMultiplicativeExpression
ruleXMultiplicativeExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXMultiplicativeExpressionAccess().getGroup()); }
(rule__XMultiplicativeExpression__Group__0)
{ after(grammarAccess.getXMultiplicativeExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpMulti
entryRuleOpMulti
:
{ before(grammarAccess.getOpMultiRule()); }
ruleOpMulti
{ after(grammarAccess.getOpMultiRule()); }
EOF
;
// Rule OpMulti
ruleOpMulti
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpMultiAccess().getAlternatives()); }
(rule__OpMulti__Alternatives)
{ after(grammarAccess.getOpMultiAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXUnaryOperation
entryRuleXUnaryOperation
:
{ before(grammarAccess.getXUnaryOperationRule()); }
ruleXUnaryOperation
{ after(grammarAccess.getXUnaryOperationRule()); }
EOF
;
// Rule XUnaryOperation
ruleXUnaryOperation
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXUnaryOperationAccess().getAlternatives()); }
(rule__XUnaryOperation__Alternatives)
{ after(grammarAccess.getXUnaryOperationAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpUnary
entryRuleOpUnary
:
{ before(grammarAccess.getOpUnaryRule()); }
ruleOpUnary
{ after(grammarAccess.getOpUnaryRule()); }
EOF
;
// Rule OpUnary
ruleOpUnary
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpUnaryAccess().getAlternatives()); }
(rule__OpUnary__Alternatives)
{ after(grammarAccess.getOpUnaryAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXCastedExpression
entryRuleXCastedExpression
:
{ before(grammarAccess.getXCastedExpressionRule()); }
ruleXCastedExpression
{ after(grammarAccess.getXCastedExpressionRule()); }
EOF
;
// Rule XCastedExpression
ruleXCastedExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXCastedExpressionAccess().getGroup()); }
(rule__XCastedExpression__Group__0)
{ after(grammarAccess.getXCastedExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXPostfixOperation
entryRuleXPostfixOperation
:
{ before(grammarAccess.getXPostfixOperationRule()); }
ruleXPostfixOperation
{ after(grammarAccess.getXPostfixOperationRule()); }
EOF
;
// Rule XPostfixOperation
ruleXPostfixOperation
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXPostfixOperationAccess().getGroup()); }
(rule__XPostfixOperation__Group__0)
{ after(grammarAccess.getXPostfixOperationAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleOpPostfix
entryRuleOpPostfix
:
{ before(grammarAccess.getOpPostfixRule()); }
ruleOpPostfix
{ after(grammarAccess.getOpPostfixRule()); }
EOF
;
// Rule OpPostfix
ruleOpPostfix
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpPostfixAccess().getAlternatives()); }
(rule__OpPostfix__Alternatives)
{ after(grammarAccess.getOpPostfixAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXMemberFeatureCall
entryRuleXMemberFeatureCall
:
{ before(grammarAccess.getXMemberFeatureCallRule()); }
ruleXMemberFeatureCall
{ after(grammarAccess.getXMemberFeatureCallRule()); }
EOF
;
// Rule XMemberFeatureCall
ruleXMemberFeatureCall
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXMemberFeatureCallAccess().getGroup()); }
(rule__XMemberFeatureCall__Group__0)
{ after(grammarAccess.getXMemberFeatureCallAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXPrimaryExpression
entryRuleXPrimaryExpression
:
{ before(grammarAccess.getXPrimaryExpressionRule()); }
ruleXPrimaryExpression
{ after(grammarAccess.getXPrimaryExpressionRule()); }
EOF
;
// Rule XPrimaryExpression
ruleXPrimaryExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXPrimaryExpressionAccess().getAlternatives()); }
(rule__XPrimaryExpression__Alternatives)
{ after(grammarAccess.getXPrimaryExpressionAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXLiteral
entryRuleXLiteral
:
{ before(grammarAccess.getXLiteralRule()); }
ruleXLiteral
{ after(grammarAccess.getXLiteralRule()); }
EOF
;
// Rule XLiteral
ruleXLiteral
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXLiteralAccess().getAlternatives()); }
(rule__XLiteral__Alternatives)
{ after(grammarAccess.getXLiteralAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXCollectionLiteral
entryRuleXCollectionLiteral
:
{ before(grammarAccess.getXCollectionLiteralRule()); }
ruleXCollectionLiteral
{ after(grammarAccess.getXCollectionLiteralRule()); }
EOF
;
// Rule XCollectionLiteral
ruleXCollectionLiteral
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXCollectionLiteralAccess().getAlternatives()); }
(rule__XCollectionLiteral__Alternatives)
{ after(grammarAccess.getXCollectionLiteralAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXSetLiteral
entryRuleXSetLiteral
:
{ before(grammarAccess.getXSetLiteralRule()); }
ruleXSetLiteral
{ after(grammarAccess.getXSetLiteralRule()); }
EOF
;
// Rule XSetLiteral
ruleXSetLiteral
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXSetLiteralAccess().getGroup()); }
(rule__XSetLiteral__Group__0)
{ after(grammarAccess.getXSetLiteralAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXListLiteral
entryRuleXListLiteral
:
{ before(grammarAccess.getXListLiteralRule()); }
ruleXListLiteral
{ after(grammarAccess.getXListLiteralRule()); }
EOF
;
// Rule XListLiteral
ruleXListLiteral
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXListLiteralAccess().getGroup()); }
(rule__XListLiteral__Group__0)
{ after(grammarAccess.getXListLiteralAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXClosure
entryRuleXClosure
:
{ before(grammarAccess.getXClosureRule()); }
ruleXClosure
{ after(grammarAccess.getXClosureRule()); }
EOF
;
// Rule XClosure
ruleXClosure
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXClosureAccess().getGroup()); }
(rule__XClosure__Group__0)
{ after(grammarAccess.getXClosureAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXExpressionInClosure
entryRuleXExpressionInClosure
:
{ before(grammarAccess.getXExpressionInClosureRule()); }
ruleXExpressionInClosure
{ after(grammarAccess.getXExpressionInClosureRule()); }
EOF
;
// Rule XExpressionInClosure
ruleXExpressionInClosure
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXExpressionInClosureAccess().getGroup()); }
(rule__XExpressionInClosure__Group__0)
{ after(grammarAccess.getXExpressionInClosureAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXShortClosure
entryRuleXShortClosure
:
{ before(grammarAccess.getXShortClosureRule()); }
ruleXShortClosure
{ after(grammarAccess.getXShortClosureRule()); }
EOF
;
// Rule XShortClosure
ruleXShortClosure
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXShortClosureAccess().getGroup()); }
(rule__XShortClosure__Group__0)
{ after(grammarAccess.getXShortClosureAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXParenthesizedExpression
entryRuleXParenthesizedExpression
:
{ before(grammarAccess.getXParenthesizedExpressionRule()); }
ruleXParenthesizedExpression
{ after(grammarAccess.getXParenthesizedExpressionRule()); }
EOF
;
// Rule XParenthesizedExpression
ruleXParenthesizedExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXParenthesizedExpressionAccess().getGroup()); }
(rule__XParenthesizedExpression__Group__0)
{ after(grammarAccess.getXParenthesizedExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXIfExpression
entryRuleXIfExpression
:
{ before(grammarAccess.getXIfExpressionRule()); }
ruleXIfExpression
{ after(grammarAccess.getXIfExpressionRule()); }
EOF
;
// Rule XIfExpression
ruleXIfExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXIfExpressionAccess().getGroup()); }
(rule__XIfExpression__Group__0)
{ after(grammarAccess.getXIfExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXSwitchExpression
entryRuleXSwitchExpression
:
{ before(grammarAccess.getXSwitchExpressionRule()); }
ruleXSwitchExpression
{ after(grammarAccess.getXSwitchExpressionRule()); }
EOF
;
// Rule XSwitchExpression
ruleXSwitchExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXSwitchExpressionAccess().getGroup()); }
(rule__XSwitchExpression__Group__0)
{ after(grammarAccess.getXSwitchExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXCasePart
entryRuleXCasePart
:
{ before(grammarAccess.getXCasePartRule()); }
ruleXCasePart
{ after(grammarAccess.getXCasePartRule()); }
EOF
;
// Rule XCasePart
ruleXCasePart
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXCasePartAccess().getGroup()); }
(rule__XCasePart__Group__0)
{ after(grammarAccess.getXCasePartAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXForLoopExpression
entryRuleXForLoopExpression
:
{ before(grammarAccess.getXForLoopExpressionRule()); }
ruleXForLoopExpression
{ after(grammarAccess.getXForLoopExpressionRule()); }
EOF
;
// Rule XForLoopExpression
ruleXForLoopExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXForLoopExpressionAccess().getGroup()); }
(rule__XForLoopExpression__Group__0)
{ after(grammarAccess.getXForLoopExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXBasicForLoopExpression
entryRuleXBasicForLoopExpression
:
{ before(grammarAccess.getXBasicForLoopExpressionRule()); }
ruleXBasicForLoopExpression
{ after(grammarAccess.getXBasicForLoopExpressionRule()); }
EOF
;
// Rule XBasicForLoopExpression
ruleXBasicForLoopExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXBasicForLoopExpressionAccess().getGroup()); }
(rule__XBasicForLoopExpression__Group__0)
{ after(grammarAccess.getXBasicForLoopExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXWhileExpression
entryRuleXWhileExpression
:
{ before(grammarAccess.getXWhileExpressionRule()); }
ruleXWhileExpression
{ after(grammarAccess.getXWhileExpressionRule()); }
EOF
;
// Rule XWhileExpression
ruleXWhileExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXWhileExpressionAccess().getGroup()); }
(rule__XWhileExpression__Group__0)
{ after(grammarAccess.getXWhileExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXDoWhileExpression
entryRuleXDoWhileExpression
:
{ before(grammarAccess.getXDoWhileExpressionRule()); }
ruleXDoWhileExpression
{ after(grammarAccess.getXDoWhileExpressionRule()); }
EOF
;
// Rule XDoWhileExpression
ruleXDoWhileExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXDoWhileExpressionAccess().getGroup()); }
(rule__XDoWhileExpression__Group__0)
{ after(grammarAccess.getXDoWhileExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXBlockExpression
entryRuleXBlockExpression
:
{ before(grammarAccess.getXBlockExpressionRule()); }
ruleXBlockExpression
{ after(grammarAccess.getXBlockExpressionRule()); }
EOF
;
// Rule XBlockExpression
ruleXBlockExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXBlockExpressionAccess().getGroup()); }
(rule__XBlockExpression__Group__0)
{ after(grammarAccess.getXBlockExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXExpressionOrVarDeclaration
entryRuleXExpressionOrVarDeclaration
:
{ before(grammarAccess.getXExpressionOrVarDeclarationRule()); }
ruleXExpressionOrVarDeclaration
{ after(grammarAccess.getXExpressionOrVarDeclarationRule()); }
EOF
;
// Rule XExpressionOrVarDeclaration
ruleXExpressionOrVarDeclaration
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXExpressionOrVarDeclarationAccess().getAlternatives()); }
(rule__XExpressionOrVarDeclaration__Alternatives)
{ after(grammarAccess.getXExpressionOrVarDeclarationAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXVariableDeclaration
entryRuleXVariableDeclaration
:
{ before(grammarAccess.getXVariableDeclarationRule()); }
ruleXVariableDeclaration
{ after(grammarAccess.getXVariableDeclarationRule()); }
EOF
;
// Rule XVariableDeclaration
ruleXVariableDeclaration
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXVariableDeclarationAccess().getGroup()); }
(rule__XVariableDeclaration__Group__0)
{ after(grammarAccess.getXVariableDeclarationAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleJvmFormalParameter
entryRuleJvmFormalParameter
:
{ before(grammarAccess.getJvmFormalParameterRule()); }
ruleJvmFormalParameter
{ after(grammarAccess.getJvmFormalParameterRule()); }
EOF
;
// Rule JvmFormalParameter
ruleJvmFormalParameter
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmFormalParameterAccess().getGroup()); }
(rule__JvmFormalParameter__Group__0)
{ after(grammarAccess.getJvmFormalParameterAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleFullJvmFormalParameter
entryRuleFullJvmFormalParameter
:
{ before(grammarAccess.getFullJvmFormalParameterRule()); }
ruleFullJvmFormalParameter
{ after(grammarAccess.getFullJvmFormalParameterRule()); }
EOF
;
// Rule FullJvmFormalParameter
ruleFullJvmFormalParameter
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getFullJvmFormalParameterAccess().getGroup()); }
(rule__FullJvmFormalParameter__Group__0)
{ after(grammarAccess.getFullJvmFormalParameterAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXFeatureCall
entryRuleXFeatureCall
:
{ before(grammarAccess.getXFeatureCallRule()); }
ruleXFeatureCall
{ after(grammarAccess.getXFeatureCallRule()); }
EOF
;
// Rule XFeatureCall
ruleXFeatureCall
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXFeatureCallAccess().getGroup()); }
(rule__XFeatureCall__Group__0)
{ after(grammarAccess.getXFeatureCallAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleFeatureCallID
entryRuleFeatureCallID
:
{ before(grammarAccess.getFeatureCallIDRule()); }
ruleFeatureCallID
{ after(grammarAccess.getFeatureCallIDRule()); }
EOF
;
// Rule FeatureCallID
ruleFeatureCallID
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getFeatureCallIDAccess().getAlternatives()); }
(rule__FeatureCallID__Alternatives)
{ after(grammarAccess.getFeatureCallIDAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleIdOrSuper
entryRuleIdOrSuper
:
{ before(grammarAccess.getIdOrSuperRule()); }
ruleIdOrSuper
{ after(grammarAccess.getIdOrSuperRule()); }
EOF
;
// Rule IdOrSuper
ruleIdOrSuper
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getIdOrSuperAccess().getAlternatives()); }
(rule__IdOrSuper__Alternatives)
{ after(grammarAccess.getIdOrSuperAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXConstructorCall
entryRuleXConstructorCall
:
{ before(grammarAccess.getXConstructorCallRule()); }
ruleXConstructorCall
{ after(grammarAccess.getXConstructorCallRule()); }
EOF
;
// Rule XConstructorCall
ruleXConstructorCall
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXConstructorCallAccess().getGroup()); }
(rule__XConstructorCall__Group__0)
{ after(grammarAccess.getXConstructorCallAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXBooleanLiteral
entryRuleXBooleanLiteral
:
{ before(grammarAccess.getXBooleanLiteralRule()); }
ruleXBooleanLiteral
{ after(grammarAccess.getXBooleanLiteralRule()); }
EOF
;
// Rule XBooleanLiteral
ruleXBooleanLiteral
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXBooleanLiteralAccess().getGroup()); }
(rule__XBooleanLiteral__Group__0)
{ after(grammarAccess.getXBooleanLiteralAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXNullLiteral
entryRuleXNullLiteral
:
{ before(grammarAccess.getXNullLiteralRule()); }
ruleXNullLiteral
{ after(grammarAccess.getXNullLiteralRule()); }
EOF
;
// Rule XNullLiteral
ruleXNullLiteral
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXNullLiteralAccess().getGroup()); }
(rule__XNullLiteral__Group__0)
{ after(grammarAccess.getXNullLiteralAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXNumberLiteral
entryRuleXNumberLiteral
:
{ before(grammarAccess.getXNumberLiteralRule()); }
ruleXNumberLiteral
{ after(grammarAccess.getXNumberLiteralRule()); }
EOF
;
// Rule XNumberLiteral
ruleXNumberLiteral
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXNumberLiteralAccess().getGroup()); }
(rule__XNumberLiteral__Group__0)
{ after(grammarAccess.getXNumberLiteralAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXStringLiteral
entryRuleXStringLiteral
:
{ before(grammarAccess.getXStringLiteralRule()); }
ruleXStringLiteral
{ after(grammarAccess.getXStringLiteralRule()); }
EOF
;
// Rule XStringLiteral
ruleXStringLiteral
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXStringLiteralAccess().getGroup()); }
(rule__XStringLiteral__Group__0)
{ after(grammarAccess.getXStringLiteralAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXTypeLiteral
entryRuleXTypeLiteral
:
{ before(grammarAccess.getXTypeLiteralRule()); }
ruleXTypeLiteral
{ after(grammarAccess.getXTypeLiteralRule()); }
EOF
;
// Rule XTypeLiteral
ruleXTypeLiteral
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXTypeLiteralAccess().getGroup()); }
(rule__XTypeLiteral__Group__0)
{ after(grammarAccess.getXTypeLiteralAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXThrowExpression
entryRuleXThrowExpression
:
{ before(grammarAccess.getXThrowExpressionRule()); }
ruleXThrowExpression
{ after(grammarAccess.getXThrowExpressionRule()); }
EOF
;
// Rule XThrowExpression
ruleXThrowExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXThrowExpressionAccess().getGroup()); }
(rule__XThrowExpression__Group__0)
{ after(grammarAccess.getXThrowExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXReturnExpression
entryRuleXReturnExpression
:
{ before(grammarAccess.getXReturnExpressionRule()); }
ruleXReturnExpression
{ after(grammarAccess.getXReturnExpressionRule()); }
EOF
;
// Rule XReturnExpression
ruleXReturnExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXReturnExpressionAccess().getGroup()); }
(rule__XReturnExpression__Group__0)
{ after(grammarAccess.getXReturnExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXTryCatchFinallyExpression
entryRuleXTryCatchFinallyExpression
:
{ before(grammarAccess.getXTryCatchFinallyExpressionRule()); }
ruleXTryCatchFinallyExpression
{ after(grammarAccess.getXTryCatchFinallyExpressionRule()); }
EOF
;
// Rule XTryCatchFinallyExpression
ruleXTryCatchFinallyExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup()); }
(rule__XTryCatchFinallyExpression__Group__0)
{ after(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXSynchronizedExpression
entryRuleXSynchronizedExpression
:
{ before(grammarAccess.getXSynchronizedExpressionRule()); }
ruleXSynchronizedExpression
{ after(grammarAccess.getXSynchronizedExpressionRule()); }
EOF
;
// Rule XSynchronizedExpression
ruleXSynchronizedExpression
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXSynchronizedExpressionAccess().getGroup()); }
(rule__XSynchronizedExpression__Group__0)
{ after(grammarAccess.getXSynchronizedExpressionAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXCatchClause
entryRuleXCatchClause
:
{ before(grammarAccess.getXCatchClauseRule()); }
ruleXCatchClause
{ after(grammarAccess.getXCatchClauseRule()); }
EOF
;
// Rule XCatchClause
ruleXCatchClause
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXCatchClauseAccess().getGroup()); }
(rule__XCatchClause__Group__0)
{ after(grammarAccess.getXCatchClauseAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleNumber
entryRuleNumber
@init {
HiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();
}
:
{ before(grammarAccess.getNumberRule()); }
ruleNumber
{ after(grammarAccess.getNumberRule()); }
EOF
;
finally {
myHiddenTokenState.restore();
}
// Rule Number
ruleNumber
@init {
HiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getNumberAccess().getAlternatives()); }
(rule__Number__Alternatives)
{ after(grammarAccess.getNumberAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
myHiddenTokenState.restore();
}
// Entry rule entryRuleJvmTypeReference
entryRuleJvmTypeReference
:
{ before(grammarAccess.getJvmTypeReferenceRule()); }
ruleJvmTypeReference
{ after(grammarAccess.getJvmTypeReferenceRule()); }
EOF
;
// Rule JvmTypeReference
ruleJvmTypeReference
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); }
(rule__JvmTypeReference__Alternatives)
{ after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleArrayBrackets
entryRuleArrayBrackets
:
{ before(grammarAccess.getArrayBracketsRule()); }
ruleArrayBrackets
{ after(grammarAccess.getArrayBracketsRule()); }
EOF
;
// Rule ArrayBrackets
ruleArrayBrackets
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getArrayBracketsAccess().getGroup()); }
(rule__ArrayBrackets__Group__0)
{ after(grammarAccess.getArrayBracketsAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXFunctionTypeRef
entryRuleXFunctionTypeRef
:
{ before(grammarAccess.getXFunctionTypeRefRule()); }
ruleXFunctionTypeRef
{ after(grammarAccess.getXFunctionTypeRefRule()); }
EOF
;
// Rule XFunctionTypeRef
ruleXFunctionTypeRef
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); }
(rule__XFunctionTypeRef__Group__0)
{ after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleJvmParameterizedTypeReference
entryRuleJvmParameterizedTypeReference
:
{ before(grammarAccess.getJvmParameterizedTypeReferenceRule()); }
ruleJvmParameterizedTypeReference
{ after(grammarAccess.getJvmParameterizedTypeReferenceRule()); }
EOF
;
// Rule JvmParameterizedTypeReference
ruleJvmParameterizedTypeReference
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); }
(rule__JvmParameterizedTypeReference__Group__0)
{ after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleJvmArgumentTypeReference
entryRuleJvmArgumentTypeReference
:
{ before(grammarAccess.getJvmArgumentTypeReferenceRule()); }
ruleJvmArgumentTypeReference
{ after(grammarAccess.getJvmArgumentTypeReferenceRule()); }
EOF
;
// Rule JvmArgumentTypeReference
ruleJvmArgumentTypeReference
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); }
(rule__JvmArgumentTypeReference__Alternatives)
{ after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleJvmWildcardTypeReference
entryRuleJvmWildcardTypeReference
:
{ before(grammarAccess.getJvmWildcardTypeReferenceRule()); }
ruleJvmWildcardTypeReference
{ after(grammarAccess.getJvmWildcardTypeReferenceRule()); }
EOF
;
// Rule JvmWildcardTypeReference
ruleJvmWildcardTypeReference
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); }
(rule__JvmWildcardTypeReference__Group__0)
{ after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleJvmUpperBound
entryRuleJvmUpperBound
:
{ before(grammarAccess.getJvmUpperBoundRule()); }
ruleJvmUpperBound
{ after(grammarAccess.getJvmUpperBoundRule()); }
EOF
;
// Rule JvmUpperBound
ruleJvmUpperBound
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmUpperBoundAccess().getGroup()); }
(rule__JvmUpperBound__Group__0)
{ after(grammarAccess.getJvmUpperBoundAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleJvmUpperBoundAnded
entryRuleJvmUpperBoundAnded
:
{ before(grammarAccess.getJvmUpperBoundAndedRule()); }
ruleJvmUpperBoundAnded
{ after(grammarAccess.getJvmUpperBoundAndedRule()); }
EOF
;
// Rule JvmUpperBoundAnded
ruleJvmUpperBoundAnded
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); }
(rule__JvmUpperBoundAnded__Group__0)
{ after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleJvmLowerBound
entryRuleJvmLowerBound
:
{ before(grammarAccess.getJvmLowerBoundRule()); }
ruleJvmLowerBound
{ after(grammarAccess.getJvmLowerBoundRule()); }
EOF
;
// Rule JvmLowerBound
ruleJvmLowerBound
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmLowerBoundAccess().getGroup()); }
(rule__JvmLowerBound__Group__0)
{ after(grammarAccess.getJvmLowerBoundAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleJvmLowerBoundAnded
entryRuleJvmLowerBoundAnded
:
{ before(grammarAccess.getJvmLowerBoundAndedRule()); }
ruleJvmLowerBoundAnded
{ after(grammarAccess.getJvmLowerBoundAndedRule()); }
EOF
;
// Rule JvmLowerBoundAnded
ruleJvmLowerBoundAnded
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); }
(rule__JvmLowerBoundAnded__Group__0)
{ after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleQualifiedNameWithWildcard
entryRuleQualifiedNameWithWildcard
:
{ before(grammarAccess.getQualifiedNameWithWildcardRule()); }
ruleQualifiedNameWithWildcard
{ after(grammarAccess.getQualifiedNameWithWildcardRule()); }
EOF
;
// Rule QualifiedNameWithWildcard
ruleQualifiedNameWithWildcard
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); }
(rule__QualifiedNameWithWildcard__Group__0)
{ after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Entry rule entryRuleXImportSection
entryRuleXImportSection
:
{ before(grammarAccess.getXImportSectionRule()); }
ruleXImportSection
{ after(grammarAccess.getXImportSectionRule()); }
EOF
;
// Rule XImportSection
ruleXImportSection
@init {
int stackSize = keepStackSize();
}
:
(
(
{ before(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); }
(rule__XImportSection__ImportDeclarationsAssignment)
{ after(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); }
)
(
{ before(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); }
(rule__XImportSection__ImportDeclarationsAssignment)*
{ after(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); }
)
)
;
finally {
restoreStackSize(stackSize);
}
// Rule ServiceExecutionModeEnum
ruleServiceExecutionModeEnum
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getServiceExecutionModeEnumAccess().getAlternatives()); }
(rule__ServiceExecutionModeEnum__Alternatives)
{ after(grammarAccess.getServiceExecutionModeEnumAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Rule EndEventHandlingEnum
ruleEndEventHandlingEnum
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getEndEventHandlingEnumAccess().getAlternatives()); }
(rule__EndEventHandlingEnum__Alternatives)
{ after(grammarAccess.getEndEventHandlingEnumAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
// Rule IconsEnum
ruleIconsEnum
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getIconsEnumAccess().getAlternatives()); }
(rule__IconsEnum__Alternatives)
{ after(grammarAccess.getIconsEnumAccess().getAlternatives()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipItem__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipItemAccess().getBlipStartEventParserRuleCall_0()); }
ruleBlipStartEvent
{ after(grammarAccess.getBlipItemAccess().getBlipStartEventParserRuleCall_0()); }
)
|(
{ before(grammarAccess.getBlipItemAccess().getBlipEndEventParserRuleCall_1()); }
ruleBlipEndEvent
{ after(grammarAccess.getBlipItemAccess().getBlipEndEventParserRuleCall_1()); }
)
|(
{ before(grammarAccess.getBlipItemAccess().getBlipUserTaskParserRuleCall_2()); }
ruleBlipUserTask
{ after(grammarAccess.getBlipItemAccess().getBlipUserTaskParserRuleCall_2()); }
)
|(
{ before(grammarAccess.getBlipItemAccess().getBlipCallActivityParserRuleCall_3()); }
ruleBlipCallActivity
{ after(grammarAccess.getBlipItemAccess().getBlipCallActivityParserRuleCall_3()); }
)
|(
{ before(grammarAccess.getBlipItemAccess().getBlipScriptTaskParserRuleCall_4()); }
ruleBlipScriptTask
{ after(grammarAccess.getBlipItemAccess().getBlipScriptTaskParserRuleCall_4()); }
)
|(
{ before(grammarAccess.getBlipItemAccess().getBlipServiceTaskParserRuleCall_5()); }
ruleBlipServiceTask
{ after(grammarAccess.getBlipItemAccess().getBlipServiceTaskParserRuleCall_5()); }
)
|(
{ before(grammarAccess.getBlipItemAccess().getBlipPersistTaskParserRuleCall_6()); }
ruleBlipPersistTask
{ after(grammarAccess.getBlipItemAccess().getBlipPersistTaskParserRuleCall_6()); }
)
|(
{ before(grammarAccess.getBlipItemAccess().getBlipExclusiveSplitGatewayParserRuleCall_7()); }
ruleBlipExclusiveSplitGateway
{ after(grammarAccess.getBlipItemAccess().getBlipExclusiveSplitGatewayParserRuleCall_7()); }
)
|(
{ before(grammarAccess.getBlipItemAccess().getBlipInclusiveSplitGatewayParserRuleCall_8()); }
ruleBlipInclusiveSplitGateway
{ after(grammarAccess.getBlipItemAccess().getBlipInclusiveSplitGatewayParserRuleCall_8()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Alternatives_7
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getGroup_7_0()); }
(rule__BlipServiceTask__Group_7_0__0)
{ after(grammarAccess.getBlipServiceTaskAccess().getGroup_7_0()); }
)
|(
{ before(grammarAccess.getBlipServiceTaskAccess().getExecutionModeAssignment_7_1()); }
(rule__BlipServiceTask__ExecutionModeAssignment_7_1)
{ after(grammarAccess.getBlipServiceTaskAccess().getExecutionModeAssignment_7_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Alternatives_9
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getGroup_9_0()); }
(rule__BlipServiceTask__Group_9_0__0)
{ after(grammarAccess.getBlipServiceTaskAccess().getGroup_9_0()); }
)
|(
{ before(grammarAccess.getBlipServiceTaskAccess().getGroup_9_1()); }
(rule__BlipServiceTask__Group_9_1__0)
{ after(grammarAccess.getBlipServiceTaskAccess().getGroup_9_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XAnnotation__Alternatives_3_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAnnotationAccess().getGroup_3_1_0()); }
(rule__XAnnotation__Group_3_1_0__0)
{ after(grammarAccess.getXAnnotationAccess().getGroup_3_1_0()); }
)
|(
{ before(grammarAccess.getXAnnotationAccess().getValueAssignment_3_1_1()); }
(rule__XAnnotation__ValueAssignment_3_1_1)
{ after(grammarAccess.getXAnnotationAccess().getValueAssignment_3_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XAnnotationElementValueOrCommaList__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0()); }
(rule__XAnnotationElementValueOrCommaList__Group_0__0)
{ after(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0()); }
)
|(
{ before(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_1()); }
(rule__XAnnotationElementValueOrCommaList__Group_1__0)
{ after(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XAnnotationElementValue__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAnnotationElementValueAccess().getGroup_0()); }
(rule__XAnnotationElementValue__Group_0__0)
{ after(grammarAccess.getXAnnotationElementValueAccess().getGroup_0()); }
)
|(
{ before(grammarAccess.getXAnnotationElementValueAccess().getXAnnotationOrExpressionParserRuleCall_1()); }
ruleXAnnotationOrExpression
{ after(grammarAccess.getXAnnotationElementValueAccess().getXAnnotationOrExpressionParserRuleCall_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XAnnotationOrExpression__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAnnotationOrExpressionAccess().getXAnnotationParserRuleCall_0()); }
ruleXAnnotation
{ after(grammarAccess.getXAnnotationOrExpressionAccess().getXAnnotationParserRuleCall_0()); }
)
|(
{ before(grammarAccess.getXAnnotationOrExpressionAccess().getXExpressionParserRuleCall_1()); }
ruleXExpression
{ after(grammarAccess.getXAnnotationOrExpressionAccess().getXExpressionParserRuleCall_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XAssignment__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXAssignmentAccess().getGroup_0()); }
(rule__XAssignment__Group_0__0)
{ after(grammarAccess.getXAssignmentAccess().getGroup_0()); }
)
|(
{ before(grammarAccess.getXAssignmentAccess().getGroup_1()); }
(rule__XAssignment__Group_1__0)
{ after(grammarAccess.getXAssignmentAccess().getGroup_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__OpMultiAssign__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpMultiAssignAccess().getPlusSignEqualsSignKeyword_0()); }
'+='
{ after(grammarAccess.getOpMultiAssignAccess().getPlusSignEqualsSignKeyword_0()); }
)
|(
{ before(grammarAccess.getOpMultiAssignAccess().getHyphenMinusEqualsSignKeyword_1()); }
'-='
{ after(grammarAccess.getOpMultiAssignAccess().getHyphenMinusEqualsSignKeyword_1()); }
)
|(
{ before(grammarAccess.getOpMultiAssignAccess().getAsteriskEqualsSignKeyword_2()); }
'*='
{ after(grammarAccess.getOpMultiAssignAccess().getAsteriskEqualsSignKeyword_2()); }
)
|(
{ before(grammarAccess.getOpMultiAssignAccess().getSolidusEqualsSignKeyword_3()); }
'/='
{ after(grammarAccess.getOpMultiAssignAccess().getSolidusEqualsSignKeyword_3()); }
)
|(
{ before(grammarAccess.getOpMultiAssignAccess().getPercentSignEqualsSignKeyword_4()); }
'%='
{ after(grammarAccess.getOpMultiAssignAccess().getPercentSignEqualsSignKeyword_4()); }
)
|(
{ before(grammarAccess.getOpMultiAssignAccess().getGroup_5()); }
(rule__OpMultiAssign__Group_5__0)
{ after(grammarAccess.getOpMultiAssignAccess().getGroup_5()); }
)
|(
{ before(grammarAccess.getOpMultiAssignAccess().getGroup_6()); }
(rule__OpMultiAssign__Group_6__0)
{ after(grammarAccess.getOpMultiAssignAccess().getGroup_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__OpEquality__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpEqualityAccess().getEqualsSignEqualsSignKeyword_0()); }
'=='
{ after(grammarAccess.getOpEqualityAccess().getEqualsSignEqualsSignKeyword_0()); }
)
|(
{ before(grammarAccess.getOpEqualityAccess().getExclamationMarkEqualsSignKeyword_1()); }
'!='
{ after(grammarAccess.getOpEqualityAccess().getExclamationMarkEqualsSignKeyword_1()); }
)
|(
{ before(grammarAccess.getOpEqualityAccess().getEqualsSignEqualsSignEqualsSignKeyword_2()); }
'==='
{ after(grammarAccess.getOpEqualityAccess().getEqualsSignEqualsSignEqualsSignKeyword_2()); }
)
|(
{ before(grammarAccess.getOpEqualityAccess().getExclamationMarkEqualsSignEqualsSignKeyword_3()); }
'!=='
{ after(grammarAccess.getOpEqualityAccess().getExclamationMarkEqualsSignEqualsSignKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XRelationalExpression__Alternatives_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0()); }
(rule__XRelationalExpression__Group_1_0__0)
{ after(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0()); }
)
|(
{ before(grammarAccess.getXRelationalExpressionAccess().getGroup_1_1()); }
(rule__XRelationalExpression__Group_1_1__0)
{ after(grammarAccess.getXRelationalExpressionAccess().getGroup_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__OpCompare__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpCompareAccess().getGreaterThanSignEqualsSignKeyword_0()); }
'>='
{ after(grammarAccess.getOpCompareAccess().getGreaterThanSignEqualsSignKeyword_0()); }
)
|(
{ before(grammarAccess.getOpCompareAccess().getGroup_1()); }
(rule__OpCompare__Group_1__0)
{ after(grammarAccess.getOpCompareAccess().getGroup_1()); }
)
|(
{ before(grammarAccess.getOpCompareAccess().getGreaterThanSignKeyword_2()); }
'>'
{ after(grammarAccess.getOpCompareAccess().getGreaterThanSignKeyword_2()); }
)
|(
{ before(grammarAccess.getOpCompareAccess().getLessThanSignKeyword_3()); }
'<'
{ after(grammarAccess.getOpCompareAccess().getLessThanSignKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__OpOther__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); }
'->'
{ after(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getFullStopFullStopLessThanSignKeyword_1()); }
'..<'
{ after(grammarAccess.getOpOtherAccess().getFullStopFullStopLessThanSignKeyword_1()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getGroup_2()); }
(rule__OpOther__Group_2__0)
{ after(grammarAccess.getOpOtherAccess().getGroup_2()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_3()); }
'..'
{ after(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_3()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_4()); }
'=>'
{ after(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_4()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getGroup_5()); }
(rule__OpOther__Group_5__0)
{ after(grammarAccess.getOpOtherAccess().getGroup_5()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getGroup_6()); }
(rule__OpOther__Group_6__0)
{ after(grammarAccess.getOpOtherAccess().getGroup_6()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getLessThanSignGreaterThanSignKeyword_7()); }
'<>'
{ after(grammarAccess.getOpOtherAccess().getLessThanSignGreaterThanSignKeyword_7()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getQuestionMarkColonKeyword_8()); }
'?:'
{ after(grammarAccess.getOpOtherAccess().getQuestionMarkColonKeyword_8()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__OpOther__Alternatives_5_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpOtherAccess().getGroup_5_1_0()); }
(rule__OpOther__Group_5_1_0__0)
{ after(grammarAccess.getOpOtherAccess().getGroup_5_1_0()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getGreaterThanSignKeyword_5_1_1()); }
'>'
{ after(grammarAccess.getOpOtherAccess().getGreaterThanSignKeyword_5_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__OpOther__Alternatives_6_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpOtherAccess().getGroup_6_1_0()); }
(rule__OpOther__Group_6_1_0__0)
{ after(grammarAccess.getOpOtherAccess().getGroup_6_1_0()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getLessThanSignKeyword_6_1_1()); }
'<'
{ after(grammarAccess.getOpOtherAccess().getLessThanSignKeyword_6_1_1()); }
)
|(
{ before(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_6_1_2()); }
'=>'
{ after(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_6_1_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__OpAdd__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpAddAccess().getPlusSignKeyword_0()); }
'+'
{ after(grammarAccess.getOpAddAccess().getPlusSignKeyword_0()); }
)
|(
{ before(grammarAccess.getOpAddAccess().getHyphenMinusKeyword_1()); }
'-'
{ after(grammarAccess.getOpAddAccess().getHyphenMinusKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__OpMulti__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpMultiAccess().getAsteriskKeyword_0()); }
'*'
{ after(grammarAccess.getOpMultiAccess().getAsteriskKeyword_0()); }
)
|(
{ before(grammarAccess.getOpMultiAccess().getAsteriskAsteriskKeyword_1()); }
'**'
{ after(grammarAccess.getOpMultiAccess().getAsteriskAsteriskKeyword_1()); }
)
|(
{ before(grammarAccess.getOpMultiAccess().getSolidusKeyword_2()); }
'/'
{ after(grammarAccess.getOpMultiAccess().getSolidusKeyword_2()); }
)
|(
{ before(grammarAccess.getOpMultiAccess().getPercentSignKeyword_3()); }
'%'
{ after(grammarAccess.getOpMultiAccess().getPercentSignKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XUnaryOperation__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXUnaryOperationAccess().getGroup_0()); }
(rule__XUnaryOperation__Group_0__0)
{ after(grammarAccess.getXUnaryOperationAccess().getGroup_0()); }
)
|(
{ before(grammarAccess.getXUnaryOperationAccess().getXCastedExpressionParserRuleCall_1()); }
ruleXCastedExpression
{ after(grammarAccess.getXUnaryOperationAccess().getXCastedExpressionParserRuleCall_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__OpUnary__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpUnaryAccess().getExclamationMarkKeyword_0()); }
'!'
{ after(grammarAccess.getOpUnaryAccess().getExclamationMarkKeyword_0()); }
)
|(
{ before(grammarAccess.getOpUnaryAccess().getHyphenMinusKeyword_1()); }
'-'
{ after(grammarAccess.getOpUnaryAccess().getHyphenMinusKeyword_1()); }
)
|(
{ before(grammarAccess.getOpUnaryAccess().getPlusSignKeyword_2()); }
'+'
{ after(grammarAccess.getOpUnaryAccess().getPlusSignKeyword_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__OpPostfix__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getOpPostfixAccess().getPlusSignPlusSignKeyword_0()); }
'++'
{ after(grammarAccess.getOpPostfixAccess().getPlusSignPlusSignKeyword_0()); }
)
|(
{ before(grammarAccess.getOpPostfixAccess().getHyphenMinusHyphenMinusKeyword_1()); }
'--'
{ after(grammarAccess.getOpPostfixAccess().getHyphenMinusHyphenMinusKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XMemberFeatureCall__Alternatives_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_0()); }
(rule__XMemberFeatureCall__Group_1_0__0)
{ after(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_0()); }
)
|(
{ before(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1()); }
(rule__XMemberFeatureCall__Group_1_1__0)
{ after(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XMemberFeatureCall__Alternatives_1_0_0_0_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXMemberFeatureCallAccess().getFullStopKeyword_1_0_0_0_1_0()); }
'.'
{ after(grammarAccess.getXMemberFeatureCallAccess().getFullStopKeyword_1_0_0_0_1_0()); }
)
|(
{ before(grammarAccess.getXMemberFeatureCallAccess().getExplicitStaticAssignment_1_0_0_0_1_1()); }
(rule__XMemberFeatureCall__ExplicitStaticAssignment_1_0_0_0_1_1)
{ after(grammarAccess.getXMemberFeatureCallAccess().getExplicitStaticAssignment_1_0_0_0_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XMemberFeatureCall__Alternatives_1_1_0_0_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXMemberFeatureCallAccess().getFullStopKeyword_1_1_0_0_1_0()); }
'.'
{ after(grammarAccess.getXMemberFeatureCallAccess().getFullStopKeyword_1_1_0_0_1_0()); }
)
|(
{ before(grammarAccess.getXMemberFeatureCallAccess().getNullSafeAssignment_1_1_0_0_1_1()); }
(rule__XMemberFeatureCall__NullSafeAssignment_1_1_0_0_1_1)
{ after(grammarAccess.getXMemberFeatureCallAccess().getNullSafeAssignment_1_1_0_0_1_1()); }
)
|(
{ before(grammarAccess.getXMemberFeatureCallAccess().getExplicitStaticAssignment_1_1_0_0_1_2()); }
(rule__XMemberFeatureCall__ExplicitStaticAssignment_1_1_0_0_1_2)
{ after(grammarAccess.getXMemberFeatureCallAccess().getExplicitStaticAssignment_1_1_0_0_1_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XMemberFeatureCall__Alternatives_1_1_3_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXMemberFeatureCallAccess().getMemberCallArgumentsAssignment_1_1_3_1_0()); }
(rule__XMemberFeatureCall__MemberCallArgumentsAssignment_1_1_3_1_0)
{ after(grammarAccess.getXMemberFeatureCallAccess().getMemberCallArgumentsAssignment_1_1_3_1_0()); }
)
|(
{ before(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_3_1_1()); }
(rule__XMemberFeatureCall__Group_1_1_3_1_1__0)
{ after(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_3_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XPrimaryExpression__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXConstructorCallParserRuleCall_0()); }
ruleXConstructorCall
{ after(grammarAccess.getXPrimaryExpressionAccess().getXConstructorCallParserRuleCall_0()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXBlockExpressionParserRuleCall_1()); }
ruleXBlockExpression
{ after(grammarAccess.getXPrimaryExpressionAccess().getXBlockExpressionParserRuleCall_1()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXSwitchExpressionParserRuleCall_2()); }
ruleXSwitchExpression
{ after(grammarAccess.getXPrimaryExpressionAccess().getXSwitchExpressionParserRuleCall_2()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXSynchronizedExpressionParserRuleCall_3()); }
( ruleXSynchronizedExpression)
{ after(grammarAccess.getXPrimaryExpressionAccess().getXSynchronizedExpressionParserRuleCall_3()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXFeatureCallParserRuleCall_4()); }
ruleXFeatureCall
{ after(grammarAccess.getXPrimaryExpressionAccess().getXFeatureCallParserRuleCall_4()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXLiteralParserRuleCall_5()); }
ruleXLiteral
{ after(grammarAccess.getXPrimaryExpressionAccess().getXLiteralParserRuleCall_5()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXIfExpressionParserRuleCall_6()); }
ruleXIfExpression
{ after(grammarAccess.getXPrimaryExpressionAccess().getXIfExpressionParserRuleCall_6()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXForLoopExpressionParserRuleCall_7()); }
( ruleXForLoopExpression)
{ after(grammarAccess.getXPrimaryExpressionAccess().getXForLoopExpressionParserRuleCall_7()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXBasicForLoopExpressionParserRuleCall_8()); }
ruleXBasicForLoopExpression
{ after(grammarAccess.getXPrimaryExpressionAccess().getXBasicForLoopExpressionParserRuleCall_8()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXWhileExpressionParserRuleCall_9()); }
ruleXWhileExpression
{ after(grammarAccess.getXPrimaryExpressionAccess().getXWhileExpressionParserRuleCall_9()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXDoWhileExpressionParserRuleCall_10()); }
ruleXDoWhileExpression
{ after(grammarAccess.getXPrimaryExpressionAccess().getXDoWhileExpressionParserRuleCall_10()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXThrowExpressionParserRuleCall_11()); }
ruleXThrowExpression
{ after(grammarAccess.getXPrimaryExpressionAccess().getXThrowExpressionParserRuleCall_11()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXReturnExpressionParserRuleCall_12()); }
ruleXReturnExpression
{ after(grammarAccess.getXPrimaryExpressionAccess().getXReturnExpressionParserRuleCall_12()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXTryCatchFinallyExpressionParserRuleCall_13()); }
ruleXTryCatchFinallyExpression
{ after(grammarAccess.getXPrimaryExpressionAccess().getXTryCatchFinallyExpressionParserRuleCall_13()); }
)
|(
{ before(grammarAccess.getXPrimaryExpressionAccess().getXParenthesizedExpressionParserRuleCall_14()); }
ruleXParenthesizedExpression
{ after(grammarAccess.getXPrimaryExpressionAccess().getXParenthesizedExpressionParserRuleCall_14()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XLiteral__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXLiteralAccess().getXCollectionLiteralParserRuleCall_0()); }
ruleXCollectionLiteral
{ after(grammarAccess.getXLiteralAccess().getXCollectionLiteralParserRuleCall_0()); }
)
|(
{ before(grammarAccess.getXLiteralAccess().getXClosureParserRuleCall_1()); }
( ruleXClosure)
{ after(grammarAccess.getXLiteralAccess().getXClosureParserRuleCall_1()); }
)
|(
{ before(grammarAccess.getXLiteralAccess().getXBooleanLiteralParserRuleCall_2()); }
ruleXBooleanLiteral
{ after(grammarAccess.getXLiteralAccess().getXBooleanLiteralParserRuleCall_2()); }
)
|(
{ before(grammarAccess.getXLiteralAccess().getXNumberLiteralParserRuleCall_3()); }
ruleXNumberLiteral
{ after(grammarAccess.getXLiteralAccess().getXNumberLiteralParserRuleCall_3()); }
)
|(
{ before(grammarAccess.getXLiteralAccess().getXNullLiteralParserRuleCall_4()); }
ruleXNullLiteral
{ after(grammarAccess.getXLiteralAccess().getXNullLiteralParserRuleCall_4()); }
)
|(
{ before(grammarAccess.getXLiteralAccess().getXStringLiteralParserRuleCall_5()); }
ruleXStringLiteral
{ after(grammarAccess.getXLiteralAccess().getXStringLiteralParserRuleCall_5()); }
)
|(
{ before(grammarAccess.getXLiteralAccess().getXTypeLiteralParserRuleCall_6()); }
ruleXTypeLiteral
{ after(grammarAccess.getXLiteralAccess().getXTypeLiteralParserRuleCall_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XCollectionLiteral__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXCollectionLiteralAccess().getXSetLiteralParserRuleCall_0()); }
ruleXSetLiteral
{ after(grammarAccess.getXCollectionLiteralAccess().getXSetLiteralParserRuleCall_0()); }
)
|(
{ before(grammarAccess.getXCollectionLiteralAccess().getXListLiteralParserRuleCall_1()); }
ruleXListLiteral
{ after(grammarAccess.getXCollectionLiteralAccess().getXListLiteralParserRuleCall_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XSwitchExpression__Alternatives_2
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXSwitchExpressionAccess().getGroup_2_0()); }
(rule__XSwitchExpression__Group_2_0__0)
{ after(grammarAccess.getXSwitchExpressionAccess().getGroup_2_0()); }
)
|(
{ before(grammarAccess.getXSwitchExpressionAccess().getGroup_2_1()); }
(rule__XSwitchExpression__Group_2_1__0)
{ after(grammarAccess.getXSwitchExpressionAccess().getGroup_2_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XCasePart__Alternatives_3
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXCasePartAccess().getGroup_3_0()); }
(rule__XCasePart__Group_3_0__0)
{ after(grammarAccess.getXCasePartAccess().getGroup_3_0()); }
)
|(
{ before(grammarAccess.getXCasePartAccess().getFallThroughAssignment_3_1()); }
(rule__XCasePart__FallThroughAssignment_3_1)
{ after(grammarAccess.getXCasePartAccess().getFallThroughAssignment_3_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XExpressionOrVarDeclaration__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXExpressionOrVarDeclarationAccess().getXVariableDeclarationParserRuleCall_0()); }
ruleXVariableDeclaration
{ after(grammarAccess.getXExpressionOrVarDeclarationAccess().getXVariableDeclarationParserRuleCall_0()); }
)
|(
{ before(grammarAccess.getXExpressionOrVarDeclarationAccess().getXExpressionParserRuleCall_1()); }
ruleXExpression
{ after(grammarAccess.getXExpressionOrVarDeclarationAccess().getXExpressionParserRuleCall_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XVariableDeclaration__Alternatives_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXVariableDeclarationAccess().getWriteableAssignment_1_0()); }
(rule__XVariableDeclaration__WriteableAssignment_1_0)
{ after(grammarAccess.getXVariableDeclarationAccess().getWriteableAssignment_1_0()); }
)
|(
{ before(grammarAccess.getXVariableDeclarationAccess().getValKeyword_1_1()); }
'val'
{ after(grammarAccess.getXVariableDeclarationAccess().getValKeyword_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XVariableDeclaration__Alternatives_2
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXVariableDeclarationAccess().getGroup_2_0()); }
(rule__XVariableDeclaration__Group_2_0__0)
{ after(grammarAccess.getXVariableDeclarationAccess().getGroup_2_0()); }
)
|(
{ before(grammarAccess.getXVariableDeclarationAccess().getNameAssignment_2_1()); }
(rule__XVariableDeclaration__NameAssignment_2_1)
{ after(grammarAccess.getXVariableDeclarationAccess().getNameAssignment_2_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XFeatureCall__Alternatives_3_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXFeatureCallAccess().getFeatureCallArgumentsAssignment_3_1_0()); }
(rule__XFeatureCall__FeatureCallArgumentsAssignment_3_1_0)
{ after(grammarAccess.getXFeatureCallAccess().getFeatureCallArgumentsAssignment_3_1_0()); }
)
|(
{ before(grammarAccess.getXFeatureCallAccess().getGroup_3_1_1()); }
(rule__XFeatureCall__Group_3_1_1__0)
{ after(grammarAccess.getXFeatureCallAccess().getGroup_3_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__FeatureCallID__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getFeatureCallIDAccess().getValidIDParserRuleCall_0()); }
ruleValidID
{ after(grammarAccess.getFeatureCallIDAccess().getValidIDParserRuleCall_0()); }
)
|(
{ before(grammarAccess.getFeatureCallIDAccess().getExtendsKeyword_1()); }
'extends'
{ after(grammarAccess.getFeatureCallIDAccess().getExtendsKeyword_1()); }
)
|(
{ before(grammarAccess.getFeatureCallIDAccess().getStaticKeyword_2()); }
'static'
{ after(grammarAccess.getFeatureCallIDAccess().getStaticKeyword_2()); }
)
|(
{ before(grammarAccess.getFeatureCallIDAccess().getImportKeyword_3()); }
'import'
{ after(grammarAccess.getFeatureCallIDAccess().getImportKeyword_3()); }
)
|(
{ before(grammarAccess.getFeatureCallIDAccess().getExtensionKeyword_4()); }
'extension'
{ after(grammarAccess.getFeatureCallIDAccess().getExtensionKeyword_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__IdOrSuper__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getIdOrSuperAccess().getFeatureCallIDParserRuleCall_0()); }
ruleFeatureCallID
{ after(grammarAccess.getIdOrSuperAccess().getFeatureCallIDParserRuleCall_0()); }
)
|(
{ before(grammarAccess.getIdOrSuperAccess().getSuperKeyword_1()); }
'super'
{ after(grammarAccess.getIdOrSuperAccess().getSuperKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XConstructorCall__Alternatives_4_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXConstructorCallAccess().getArgumentsAssignment_4_1_0()); }
(rule__XConstructorCall__ArgumentsAssignment_4_1_0)
{ after(grammarAccess.getXConstructorCallAccess().getArgumentsAssignment_4_1_0()); }
)
|(
{ before(grammarAccess.getXConstructorCallAccess().getGroup_4_1_1()); }
(rule__XConstructorCall__Group_4_1_1__0)
{ after(grammarAccess.getXConstructorCallAccess().getGroup_4_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XBooleanLiteral__Alternatives_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXBooleanLiteralAccess().getFalseKeyword_1_0()); }
'false'
{ after(grammarAccess.getXBooleanLiteralAccess().getFalseKeyword_1_0()); }
)
|(
{ before(grammarAccess.getXBooleanLiteralAccess().getIsTrueAssignment_1_1()); }
(rule__XBooleanLiteral__IsTrueAssignment_1_1)
{ after(grammarAccess.getXBooleanLiteralAccess().getIsTrueAssignment_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__XTryCatchFinallyExpression__Alternatives_3
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_0()); }
(rule__XTryCatchFinallyExpression__Group_3_0__0)
{ after(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_0()); }
)
|(
{ before(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_1()); }
(rule__XTryCatchFinallyExpression__Group_3_1__0)
{ after(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Number__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getNumberAccess().getHEXTerminalRuleCall_0()); }
RULE_HEX
{ after(grammarAccess.getNumberAccess().getHEXTerminalRuleCall_0()); }
)
|(
{ before(grammarAccess.getNumberAccess().getGroup_1()); }
(rule__Number__Group_1__0)
{ after(grammarAccess.getNumberAccess().getGroup_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Number__Alternatives_1_0
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getNumberAccess().getINTTerminalRuleCall_1_0_0()); }
RULE_INT
{ after(grammarAccess.getNumberAccess().getINTTerminalRuleCall_1_0_0()); }
)
|(
{ before(grammarAccess.getNumberAccess().getDECIMALTerminalRuleCall_1_0_1()); }
RULE_DECIMAL
{ after(grammarAccess.getNumberAccess().getDECIMALTerminalRuleCall_1_0_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Number__Alternatives_1_1_1
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getNumberAccess().getINTTerminalRuleCall_1_1_1_0()); }
RULE_INT
{ after(grammarAccess.getNumberAccess().getINTTerminalRuleCall_1_1_1_0()); }
)
|(
{ before(grammarAccess.getNumberAccess().getDECIMALTerminalRuleCall_1_1_1_1()); }
RULE_DECIMAL
{ after(grammarAccess.getNumberAccess().getDECIMALTerminalRuleCall_1_1_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__JvmTypeReference__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); }
(rule__JvmTypeReference__Group_0__0)
{ after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); }
)
|(
{ before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); }
ruleXFunctionTypeRef
{ after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__JvmArgumentTypeReference__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); }
ruleJvmTypeReference
{ after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); }
)
|(
{ before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); }
ruleJvmWildcardTypeReference
{ after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__JvmWildcardTypeReference__Alternatives_2
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); }
(rule__JvmWildcardTypeReference__Group_2_0__0)
{ after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); }
)
|(
{ before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); }
(rule__JvmWildcardTypeReference__Group_2_1__0)
{ after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__ServiceExecutionModeEnum__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getServiceExecutionModeEnumAccess().getSYNCEnumLiteralDeclaration_0()); }
( 'synchron'
)
{ after(grammarAccess.getServiceExecutionModeEnumAccess().getSYNCEnumLiteralDeclaration_0()); }
)
|(
{ before(grammarAccess.getServiceExecutionModeEnumAccess().getONEWAYEnumLiteralDeclaration_1()); }
( 'oneway'
)
{ after(grammarAccess.getServiceExecutionModeEnumAccess().getONEWAYEnumLiteralDeclaration_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__EndEventHandlingEnum__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getEndEventHandlingEnumAccess().getTERMINATES_PROCESSEnumLiteralDeclaration_0()); }
( 'terminates process'
)
{ after(grammarAccess.getEndEventHandlingEnumAccess().getTERMINATES_PROCESSEnumLiteralDeclaration_0()); }
)
|(
{ before(grammarAccess.getEndEventHandlingEnumAccess().getENDS_TOKEN_PATHEnumLiteralDeclaration_1()); }
( 'ends token path'
)
{ after(grammarAccess.getEndEventHandlingEnumAccess().getENDS_TOKEN_PATHEnumLiteralDeclaration_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__IconsEnum__Alternatives
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getIconsEnumAccess().getICON_PLUSEnumLiteralDeclaration_0()); }
( 'plus'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_PLUSEnumLiteralDeclaration_0()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_MINUSEnumLiteralDeclaration_1()); }
( 'minus'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_MINUSEnumLiteralDeclaration_1()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_INFOEnumLiteralDeclaration_2()); }
( 'info'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_INFOEnumLiteralDeclaration_2()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_LEFTEnumLiteralDeclaration_3()); }
( 'left'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_LEFTEnumLiteralDeclaration_3()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_UPEnumLiteralDeclaration_4()); }
( 'up'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_UPEnumLiteralDeclaration_4()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_RIGHTEnumLiteralDeclaration_5()); }
( 'right'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_RIGHTEnumLiteralDeclaration_5()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_DOWNEnumLiteralDeclaration_6()); }
( 'down'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_DOWNEnumLiteralDeclaration_6()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_EXCHANGEEnumLiteralDeclaration_7()); }
( 'exchange'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_EXCHANGEEnumLiteralDeclaration_7()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_HOMEEnumLiteralDeclaration_8()); }
( 'home'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_HOMEEnumLiteralDeclaration_8()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_HOME_1EnumLiteralDeclaration_9()); }
( 'home-1'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_HOME_1EnumLiteralDeclaration_9()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_UP_DIREnumLiteralDeclaration_10()); }
( 'up-dir'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_UP_DIREnumLiteralDeclaration_10()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_RIGHT_DIREnumLiteralDeclaration_11()); }
( 'right-dir'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_RIGHT_DIREnumLiteralDeclaration_11()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_DOWN_DIREnumLiteralDeclaration_12()); }
( 'down-dir'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_DOWN_DIREnumLiteralDeclaration_12()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_LEFT_DIREnumLiteralDeclaration_13()); }
( 'left-dir'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_LEFT_DIREnumLiteralDeclaration_13()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_STAREnumLiteralDeclaration_14()); }
( 'star'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_STAREnumLiteralDeclaration_14()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_STAR_EMPTYEnumLiteralDeclaration_15()); }
( 'star-empty'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_STAR_EMPTYEnumLiteralDeclaration_15()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_TH_LISTEnumLiteralDeclaration_16()); }
( 'th-list'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_TH_LISTEnumLiteralDeclaration_16()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_HEART_EMPTYEnumLiteralDeclaration_17()); }
( 'heart-empty'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_HEART_EMPTYEnumLiteralDeclaration_17()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_HEARTEnumLiteralDeclaration_18()); }
( 'heart'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_HEARTEnumLiteralDeclaration_18()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_MUSICEnumLiteralDeclaration_19()); }
( 'music'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_MUSICEnumLiteralDeclaration_19()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_THEnumLiteralDeclaration_20()); }
( 'th'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_THEnumLiteralDeclaration_20()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_FLAGEnumLiteralDeclaration_21()); }
( 'flag'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_FLAGEnumLiteralDeclaration_21()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_COGEnumLiteralDeclaration_22()); }
( 'cog'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_COGEnumLiteralDeclaration_22()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_ATTENTIONEnumLiteralDeclaration_23()); }
( 'attention'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_ATTENTIONEnumLiteralDeclaration_23()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_MAILEnumLiteralDeclaration_24()); }
( 'mail'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_MAILEnumLiteralDeclaration_24()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_EDITEnumLiteralDeclaration_25()); }
( 'edit'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_EDITEnumLiteralDeclaration_25()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_PENCILEnumLiteralDeclaration_26()); }
( 'pencil'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_PENCILEnumLiteralDeclaration_26()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_OKEnumLiteralDeclaration_27()); }
( 'ok'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_OKEnumLiteralDeclaration_27()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_CANCEL_1EnumLiteralDeclaration_28()); }
( 'cancel-1'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_CANCEL_1EnumLiteralDeclaration_28()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_CANCELEnumLiteralDeclaration_29()); }
( 'cancel'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_CANCELEnumLiteralDeclaration_29()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_CANCEL_CIRCLEEnumLiteralDeclaration_30()); }
( 'cancel-circle'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_CANCEL_CIRCLEEnumLiteralDeclaration_30()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_HELPEnumLiteralDeclaration_31()); }
( 'help'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_HELPEnumLiteralDeclaration_31()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_PLUS_CIRCLEEnumLiteralDeclaration_32()); }
( 'plus-circle'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_PLUS_CIRCLEEnumLiteralDeclaration_32()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_MINUS_CIRCLEEnumLiteralDeclaration_33()); }
( 'minus-circle'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_MINUS_CIRCLEEnumLiteralDeclaration_33()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_RIGHT_THINEnumLiteralDeclaration_34()); }
( 'right-thin'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_RIGHT_THINEnumLiteralDeclaration_34()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_FORWARDEnumLiteralDeclaration_35()); }
( 'forward'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_FORWARDEnumLiteralDeclaration_35()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_CWEnumLiteralDeclaration_36()); }
( 'cw'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_CWEnumLiteralDeclaration_36()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_LEFT_THINEnumLiteralDeclaration_37()); }
( 'left-thin'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_LEFT_THINEnumLiteralDeclaration_37()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_UP_THINEnumLiteralDeclaration_38()); }
( 'up-thin'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_UP_THINEnumLiteralDeclaration_38()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_DOWN_THINEnumLiteralDeclaration_39()); }
( 'down-thin'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_DOWN_THINEnumLiteralDeclaration_39()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_LEFT_BOLDEnumLiteralDeclaration_40()); }
( 'left-bold'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_LEFT_BOLDEnumLiteralDeclaration_40()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_RIGHT_BOLDEnumLiteralDeclaration_41()); }
( 'right-bold'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_RIGHT_BOLDEnumLiteralDeclaration_41()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_UP_BOLDEnumLiteralDeclaration_42()); }
( 'up-bold'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_UP_BOLDEnumLiteralDeclaration_42()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_DOWN_BOLDEnumLiteralDeclaration_43()); }
( 'down-bold'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_DOWN_BOLDEnumLiteralDeclaration_43()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_USER_ADDEnumLiteralDeclaration_44()); }
( 'user-add'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_USER_ADDEnumLiteralDeclaration_44()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_HELP_CIRCLEEnumLiteralDeclaration_45()); }
( 'help-circle'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_HELP_CIRCLEEnumLiteralDeclaration_45()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_INFO_CIRCLEEnumLiteralDeclaration_46()); }
( 'info-circle'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_INFO_CIRCLEEnumLiteralDeclaration_46()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_BACKEnumLiteralDeclaration_47()); }
( 'back'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_BACKEnumLiteralDeclaration_47()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_EYEEnumLiteralDeclaration_48()); }
( 'eye'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_EYEEnumLiteralDeclaration_48()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_TAGEnumLiteralDeclaration_49()); }
( 'tag'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_TAGEnumLiteralDeclaration_49()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_UPLOAD_CLOUDEnumLiteralDeclaration_50()); }
( 'upload-cloud'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_UPLOAD_CLOUDEnumLiteralDeclaration_50()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_REPLYEnumLiteralDeclaration_51()); }
( 'reply'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_REPLYEnumLiteralDeclaration_51()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_EXPORTEnumLiteralDeclaration_52()); }
( 'export'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_EXPORTEnumLiteralDeclaration_52()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_PRINTEnumLiteralDeclaration_53()); }
( 'print'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_PRINTEnumLiteralDeclaration_53()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_RETWEETEnumLiteralDeclaration_54()); }
( 'retweet'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_RETWEETEnumLiteralDeclaration_54()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_COMMENTEnumLiteralDeclaration_55()); }
( 'comment'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_COMMENTEnumLiteralDeclaration_55()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_VCARDEnumLiteralDeclaration_56()); }
( 'vcard'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_VCARDEnumLiteralDeclaration_56()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_LOCATIONEnumLiteralDeclaration_57()); }
( 'location'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_LOCATIONEnumLiteralDeclaration_57()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_TRASHEnumLiteralDeclaration_58()); }
( 'trash'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_TRASHEnumLiteralDeclaration_58()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_RESIZE_FULLEnumLiteralDeclaration_59()); }
( 'resize-full'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_RESIZE_FULLEnumLiteralDeclaration_59()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_RESIZE_SMALLEnumLiteralDeclaration_60()); }
( 'resize-small'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_RESIZE_SMALLEnumLiteralDeclaration_60()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_DOWN_OPENEnumLiteralDeclaration_61()); }
( 'down-open'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_DOWN_OPENEnumLiteralDeclaration_61()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_LEFT_OPENEnumLiteralDeclaration_62()); }
( 'left-open'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_LEFT_OPENEnumLiteralDeclaration_62()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_RIGHT_OPENEnumLiteralDeclaration_63()); }
( 'right-open'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_RIGHT_OPENEnumLiteralDeclaration_63()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_UP_OPENEnumLiteralDeclaration_64()); }
( 'up-open'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_UP_OPENEnumLiteralDeclaration_64()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_ARROWS_CWEnumLiteralDeclaration_65()); }
( 'arrows-cw'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_ARROWS_CWEnumLiteralDeclaration_65()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_CHART_PIEEnumLiteralDeclaration_66()); }
( 'chart-pie'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_CHART_PIEEnumLiteralDeclaration_66()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_SEARCH_1EnumLiteralDeclaration_67()); }
( 'search-1'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_SEARCH_1EnumLiteralDeclaration_67()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_USEREnumLiteralDeclaration_68()); }
( 'user'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_USEREnumLiteralDeclaration_68()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_USERSEnumLiteralDeclaration_69()); }
( 'users'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_USERSEnumLiteralDeclaration_69()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_MONITOREnumLiteralDeclaration_70()); }
( 'monitor'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_MONITOREnumLiteralDeclaration_70()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_FOLDEREnumLiteralDeclaration_71()); }
( 'folder'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_FOLDEREnumLiteralDeclaration_71()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_DOCEnumLiteralDeclaration_72()); }
( 'doc'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_DOCEnumLiteralDeclaration_72()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_CALENDAREnumLiteralDeclaration_73()); }
( 'calendar'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_CALENDAREnumLiteralDeclaration_73()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_CHARTEnumLiteralDeclaration_74()); }
( 'chart'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_CHARTEnumLiteralDeclaration_74()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_ATTACHEnumLiteralDeclaration_75()); }
( 'attach'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_ATTACHEnumLiteralDeclaration_75()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_UPLOADEnumLiteralDeclaration_76()); }
( 'upload'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_UPLOADEnumLiteralDeclaration_76()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_DOWNLOADEnumLiteralDeclaration_77()); }
( 'download'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_DOWNLOADEnumLiteralDeclaration_77()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_MOBILEEnumLiteralDeclaration_78()); }
( 'mobile'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_MOBILEEnumLiteralDeclaration_78()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_CAMERAEnumLiteralDeclaration_79()); }
( 'camera'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_CAMERAEnumLiteralDeclaration_79()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_LOCKEnumLiteralDeclaration_80()); }
( 'lock'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_LOCKEnumLiteralDeclaration_80()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_LOCK_OPENEnumLiteralDeclaration_81()); }
( 'lock-open'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_LOCK_OPENEnumLiteralDeclaration_81()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_BELLEnumLiteralDeclaration_82()); }
( 'bell'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_BELLEnumLiteralDeclaration_82()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_LINKEnumLiteralDeclaration_83()); }
( 'link'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_LINKEnumLiteralDeclaration_83()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_CLOCKEnumLiteralDeclaration_84()); }
( 'clock'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_CLOCKEnumLiteralDeclaration_84()); }
)
|(
{ before(grammarAccess.getIconsEnumAccess().getICON_BLOCKEnumLiteralDeclaration_85()); }
( 'block'
)
{ after(grammarAccess.getIconsEnumAccess().getICON_BLOCKEnumLiteralDeclaration_85()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPackage__Group__0__Impl
rule__BlipPackage__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPackageAccess().getBlipPackageAction_0()); }
(
)
{ after(grammarAccess.getBlipPackageAccess().getBlipPackageAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPackage__Group__1__Impl
rule__BlipPackage__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPackageAccess().getPackageKeyword_1()); }
'package'
{ after(grammarAccess.getBlipPackageAccess().getPackageKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPackage__Group__2__Impl
rule__BlipPackage__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPackageAccess().getNameAssignment_2()); }
(rule__BlipPackage__NameAssignment_2)
{ after(grammarAccess.getBlipPackageAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPackage__Group__3__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPackageAccess().getGroup_3()); }
(rule__BlipPackage__Group_3__0)?
{ after(grammarAccess.getBlipPackageAccess().getGroup_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group_3__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPackage__Group_3__0__Impl
rule__BlipPackage__Group_3__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group_3__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPackageAccess().getLeftCurlyBracketKeyword_3_0()); }
'{'
{ after(grammarAccess.getBlipPackageAccess().getLeftCurlyBracketKeyword_3_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group_3__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPackage__Group_3__1__Impl
rule__BlipPackage__Group_3__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group_3__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPackageAccess().getImportSectionAssignment_3_1()); }
(rule__BlipPackage__ImportSectionAssignment_3_1)?
{ after(grammarAccess.getBlipPackageAccess().getImportSectionAssignment_3_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group_3__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPackage__Group_3__2__Impl
rule__BlipPackage__Group_3__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group_3__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPackageAccess().getBlipsAssignment_3_2()); }
(rule__BlipPackage__BlipsAssignment_3_2)*
{ after(grammarAccess.getBlipPackageAccess().getBlipsAssignment_3_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group_3__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPackage__Group_3__3__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPackage__Group_3__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPackageAccess().getRightCurlyBracketKeyword_3_3()); }
'}'
{ after(grammarAccess.getBlipPackageAccess().getRightCurlyBracketKeyword_3_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group__0__Impl
rule__Blip__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getBlipAction_0()); }
(
)
{ after(grammarAccess.getBlipAccess().getBlipAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group__1__Impl
rule__Blip__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getProcessKeyword_1()); }
'process'
{ after(grammarAccess.getBlipAccess().getProcessKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group__2__Impl
rule__Blip__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getNameAssignment_2()); }
(rule__Blip__NameAssignment_2)
{ after(grammarAccess.getBlipAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group__3__Impl
rule__Blip__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getUnorderedGroup_3()); }
(rule__Blip__UnorderedGroup_3)
{ after(grammarAccess.getBlipAccess().getUnorderedGroup_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group__4__Impl
rule__Blip__Group__5
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getGroup_4()); }
(rule__Blip__Group_4__0)?
{ after(grammarAccess.getBlipAccess().getGroup_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__5
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group__5__Impl
rule__Blip__Group__6
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__5__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getGroup_5()); }
(rule__Blip__Group_5__0)?
{ after(grammarAccess.getBlipAccess().getGroup_5()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__6
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group__6__Impl
rule__Blip__Group__7
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__6__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getBpmnKeyword_6()); }
'bpmn'
{ after(grammarAccess.getBlipAccess().getBpmnKeyword_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__7
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group__7__Impl
rule__Blip__Group__8
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__7__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getProcessAssignment_7()); }
(rule__Blip__ProcessAssignment_7)
{ after(grammarAccess.getBlipAccess().getProcessAssignment_7()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__8
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group__8__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group__8__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getGroup_8()); }
(rule__Blip__Group_8__0)?
{ after(grammarAccess.getBlipAccess().getGroup_8()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_0__0
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_3_0__0__Impl
rule__Blip__Group_3_0__1
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_0__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getHasImageAssignment_3_0_0()); }
(rule__Blip__HasImageAssignment_3_0_0)
{ after(grammarAccess.getBlipAccess().getHasImageAssignment_3_0_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_0__1
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_3_0__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_0__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getImageAssignment_3_0_1()); }
(rule__Blip__ImageAssignment_3_0_1)
{ after(grammarAccess.getBlipAccess().getImageAssignment_3_0_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_1__0
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_3_1__0__Impl
rule__Blip__Group_3_1__1
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_1__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getHasIconAssignment_3_1_0()); }
(rule__Blip__HasIconAssignment_3_1_0)
{ after(grammarAccess.getBlipAccess().getHasIconAssignment_3_1_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_1__1
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_3_1__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_1__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getIconAssignment_3_1_1()); }
(rule__Blip__IconAssignment_3_1_1)
{ after(grammarAccess.getBlipAccess().getIconAssignment_3_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_3__0
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_3_3__0__Impl
rule__Blip__Group_3_3__1
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_3__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getDescriptionAssignment_3_3_0()); }
(rule__Blip__DescriptionAssignment_3_3_0)
{ after(grammarAccess.getBlipAccess().getDescriptionAssignment_3_3_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_3__1
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_3_3__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_3_3__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getDescriptionValueAssignment_3_3_1()); }
(rule__Blip__DescriptionValueAssignment_3_3_1)
{ after(grammarAccess.getBlipAccess().getDescriptionValueAssignment_3_3_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_4__0
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_4__0__Impl
rule__Blip__Group_4__1
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_4__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getWorkloadKeyword_4_0()); }
'workload'
{ after(grammarAccess.getBlipAccess().getWorkloadKeyword_4_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_4__1
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_4__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_4__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getWorkloadAssignment_4_1()); }
(rule__Blip__WorkloadAssignment_4_1)
{ after(grammarAccess.getBlipAccess().getWorkloadAssignment_4_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_5__0
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_5__0__Impl
rule__Blip__Group_5__1
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_5__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getFunctiongroupKeyword_5_0()); }
'functiongroup'
{ after(grammarAccess.getBlipAccess().getFunctiongroupKeyword_5_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_5__1
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_5__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_5__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getFunctionGroupAssignment_5_1()); }
(rule__Blip__FunctionGroupAssignment_5_1)
{ after(grammarAccess.getBlipAccess().getFunctionGroupAssignment_5_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_8__0
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_8__0__Impl
rule__Blip__Group_8__1
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_8__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getLeftCurlyBracketKeyword_8_0()); }
'{'
{ after(grammarAccess.getBlipAccess().getLeftCurlyBracketKeyword_8_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_8__1
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_8__1__Impl
rule__Blip__Group_8__2
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_8__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getItemsAssignment_8_1()); }
(rule__Blip__ItemsAssignment_8_1)*
{ after(grammarAccess.getBlipAccess().getItemsAssignment_8_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_8__2
@init {
int stackSize = keepStackSize();
}
:
rule__Blip__Group_8__2__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__Blip__Group_8__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipAccess().getRightCurlyBracketKeyword_8_2()); }
'}'
{ after(grammarAccess.getBlipAccess().getRightCurlyBracketKeyword_8_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipWorkload__Group__0__Impl
rule__BlipWorkload__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipWorkloadAccess().getBlipWorkloadAction_0()); }
(
)
{ after(grammarAccess.getBlipWorkloadAccess().getBlipWorkloadAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipWorkload__Group__1__Impl
rule__BlipWorkload__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipWorkloadAccess().getUsingKeyword_1()); }
'using'
{ after(grammarAccess.getBlipWorkloadAccess().getUsingKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipWorkload__Group__2__Impl
rule__BlipWorkload__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipWorkloadAccess().getSourceAssignment_2()); }
(rule__BlipWorkload__SourceAssignment_2)
{ after(grammarAccess.getBlipWorkloadAccess().getSourceAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipWorkload__Group__3__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipWorkloadAccess().getGroup_3()); }
(rule__BlipWorkload__Group_3__0)?
{ after(grammarAccess.getBlipWorkloadAccess().getGroup_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group_3__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipWorkload__Group_3__0__Impl
rule__BlipWorkload__Group_3__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group_3__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipWorkloadAccess().getPredefineKeyword_3_0()); }
'predefine'
{ after(grammarAccess.getBlipWorkloadAccess().getPredefineKeyword_3_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group_3__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipWorkload__Group_3__1__Impl
rule__BlipWorkload__Group_3__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group_3__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipWorkloadAccess().getLeftCurlyBracketKeyword_3_1()); }
'{'
{ after(grammarAccess.getBlipWorkloadAccess().getLeftCurlyBracketKeyword_3_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group_3__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipWorkload__Group_3__2__Impl
rule__BlipWorkload__Group_3__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group_3__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipWorkloadAccess().getFiltersAssignment_3_2()); }
(rule__BlipWorkload__FiltersAssignment_3_2)*
{ after(grammarAccess.getBlipWorkloadAccess().getFiltersAssignment_3_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group_3__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipWorkload__Group_3__3__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipWorkload__Group_3__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipWorkloadAccess().getRightCurlyBracketKeyword_3_3()); }
'}'
{ after(grammarAccess.getBlipWorkloadAccess().getRightCurlyBracketKeyword_3_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipFilter__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipFilter__Group__0__Impl
rule__BlipFilter__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipFilter__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipFilterAccess().getBlipFilterAction_0()); }
(
)
{ after(grammarAccess.getBlipFilterAccess().getBlipFilterAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipFilter__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipFilter__Group__1__Impl
rule__BlipFilter__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipFilter__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipFilterAccess().getSetKeyword_1()); }
'set'
{ after(grammarAccess.getBlipFilterAccess().getSetKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipFilter__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipFilter__Group__2__Impl
rule__BlipFilter__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipFilter__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipFilterAccess().getFilterNameAssignment_2()); }
(rule__BlipFilter__FilterNameAssignment_2)
{ after(grammarAccess.getBlipFilterAccess().getFilterNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipFilter__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipFilter__Group__3__Impl
rule__BlipFilter__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipFilter__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipFilterAccess().getToKeyword_3()); }
'to'
{ after(grammarAccess.getBlipFilterAccess().getToKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipFilter__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipFilter__Group__4__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipFilter__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipFilterAccess().getFilterValueAssignment_4()); }
(rule__BlipFilter__FilterValueAssignment_4)
{ after(grammarAccess.getBlipFilterAccess().getFilterValueAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipDto__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipDto__Group__0__Impl
rule__BlipDto__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipDto__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipDtoAccess().getBlipDtoAction_0()); }
(
)
{ after(grammarAccess.getBlipDtoAccess().getBlipDtoAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipDto__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipDto__Group__1__Impl
rule__BlipDto__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipDto__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipDtoAccess().getDtoKeyword_1()); }
'dto'
{ after(grammarAccess.getBlipDtoAccess().getDtoKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipDto__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipDto__Group__2__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipDto__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipDtoAccess().getDtoRefAssignment_2()); }
(rule__BlipDto__DtoRefAssignment_2)
{ after(grammarAccess.getBlipDtoAccess().getDtoRefAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipStartEvent__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipStartEvent__Group__0__Impl
rule__BlipStartEvent__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipStartEvent__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipStartEventAccess().getBlipStartEventAction_0()); }
(
)
{ after(grammarAccess.getBlipStartEventAccess().getBlipStartEventAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipStartEvent__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipStartEvent__Group__1__Impl
rule__BlipStartEvent__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipStartEvent__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipStartEventAccess().getStarteventKeyword_1()); }
'startevent'
{ after(grammarAccess.getBlipStartEventAccess().getStarteventKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipStartEvent__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipStartEvent__Group__2__Impl
rule__BlipStartEvent__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipStartEvent__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipStartEventAccess().getNameAssignment_2()); }
(rule__BlipStartEvent__NameAssignment_2)
{ after(grammarAccess.getBlipStartEventAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipStartEvent__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipStartEvent__Group__3__Impl
rule__BlipStartEvent__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipStartEvent__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipStartEventAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipStartEventAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipStartEvent__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipStartEvent__Group__4__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipStartEvent__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipStartEventAccess().getEventAssignment_4()); }
(rule__BlipStartEvent__EventAssignment_4)
{ after(grammarAccess.getBlipStartEventAccess().getEventAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipEndEvent__Group__0__Impl
rule__BlipEndEvent__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipEndEventAccess().getBlipEndEventAction_0()); }
(
)
{ after(grammarAccess.getBlipEndEventAccess().getBlipEndEventAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipEndEvent__Group__1__Impl
rule__BlipEndEvent__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipEndEventAccess().getEndeventKeyword_1()); }
'endevent'
{ after(grammarAccess.getBlipEndEventAccess().getEndeventKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipEndEvent__Group__2__Impl
rule__BlipEndEvent__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipEndEventAccess().getNameAssignment_2()); }
(rule__BlipEndEvent__NameAssignment_2)
{ after(grammarAccess.getBlipEndEventAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipEndEvent__Group__3__Impl
rule__BlipEndEvent__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipEndEventAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipEndEventAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipEndEvent__Group__4__Impl
rule__BlipEndEvent__Group__5
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipEndEventAccess().getEventAssignment_4()); }
(rule__BlipEndEvent__EventAssignment_4)
{ after(grammarAccess.getBlipEndEventAccess().getEventAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__5
@init {
int stackSize = keepStackSize();
}
:
rule__BlipEndEvent__Group__5__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipEndEvent__Group__5__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipEndEventAccess().getEndHandlingAssignment_5()); }
(rule__BlipEndEvent__EndHandlingAssignment_5)
{ after(grammarAccess.getBlipEndEventAccess().getEndHandlingAssignment_5()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group__0__Impl
rule__BlipUserTask__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getBlipUserTaskAction_0()); }
(
)
{ after(grammarAccess.getBlipUserTaskAccess().getBlipUserTaskAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group__1__Impl
rule__BlipUserTask__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getUsertaskKeyword_1()); }
'usertask'
{ after(grammarAccess.getBlipUserTaskAccess().getUsertaskKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group__2__Impl
rule__BlipUserTask__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getNameAssignment_2()); }
(rule__BlipUserTask__NameAssignment_2)
{ after(grammarAccess.getBlipUserTaskAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group__3__Impl
rule__BlipUserTask__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipUserTaskAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group__4__Impl
rule__BlipUserTask__Group__5
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getTaskAssignment_4()); }
(rule__BlipUserTask__TaskAssignment_4)
{ after(grammarAccess.getBlipUserTaskAccess().getTaskAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__5
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group__5__Impl
rule__BlipUserTask__Group__6
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__5__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getGroup_5()); }
(rule__BlipUserTask__Group_5__0)?
{ after(grammarAccess.getBlipUserTaskAccess().getGroup_5()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__6
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group__6__Impl
rule__BlipUserTask__Group__7
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__6__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getGroup_6()); }
(rule__BlipUserTask__Group_6__0)?
{ after(grammarAccess.getBlipUserTaskAccess().getGroup_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__7
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group__7__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group__7__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getGroup_7()); }
(rule__BlipUserTask__Group_7__0)?
{ after(grammarAccess.getBlipUserTaskAccess().getGroup_7()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_5__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group_5__0__Impl
rule__BlipUserTask__Group_5__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_5__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getOperatesOnKeyword_5_0()); }
'operates on'
{ after(grammarAccess.getBlipUserTaskAccess().getOperatesOnKeyword_5_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_5__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group_5__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_5__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getDtoPathAssignment_5_1()); }
(rule__BlipUserTask__DtoPathAssignment_5_1)
{ after(grammarAccess.getBlipUserTaskAccess().getDtoPathAssignment_5_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_6__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group_6__0__Impl
rule__BlipUserTask__Group_6__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_6__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getOnentryKeyword_6_0()); }
'onentry'
{ after(grammarAccess.getBlipUserTaskAccess().getOnentryKeyword_6_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_6__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group_6__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_6__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getOnEntryAssignment_6_1()); }
(rule__BlipUserTask__OnEntryAssignment_6_1)
{ after(grammarAccess.getBlipUserTaskAccess().getOnEntryAssignment_6_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_7__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group_7__0__Impl
rule__BlipUserTask__Group_7__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_7__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getOnexitKeyword_7_0()); }
'onexit'
{ after(grammarAccess.getBlipUserTaskAccess().getOnexitKeyword_7_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_7__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipUserTask__Group_7__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipUserTask__Group_7__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipUserTaskAccess().getOnExitAssignment_7_1()); }
(rule__BlipUserTask__OnExitAssignment_7_1)
{ after(grammarAccess.getBlipUserTaskAccess().getOnExitAssignment_7_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group__0__Impl
rule__BlipCallActivity__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getBlipCallActivityAction_0()); }
(
)
{ after(grammarAccess.getBlipCallActivityAccess().getBlipCallActivityAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group__1__Impl
rule__BlipCallActivity__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getCallActivityKeyword_1()); }
'callActivity'
{ after(grammarAccess.getBlipCallActivityAccess().getCallActivityKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group__2__Impl
rule__BlipCallActivity__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getNameAssignment_2()); }
(rule__BlipCallActivity__NameAssignment_2)
{ after(grammarAccess.getBlipCallActivityAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group__3__Impl
rule__BlipCallActivity__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipCallActivityAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group__4__Impl
rule__BlipCallActivity__Group__5
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getCallActivityAssignment_4()); }
(rule__BlipCallActivity__CallActivityAssignment_4)
{ after(grammarAccess.getBlipCallActivityAccess().getCallActivityAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__5
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group__5__Impl
rule__BlipCallActivity__Group__6
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__5__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getGroup_5()); }
(rule__BlipCallActivity__Group_5__0)?
{ after(grammarAccess.getBlipCallActivityAccess().getGroup_5()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__6
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group__6__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group__6__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getGroup_6()); }
(rule__BlipCallActivity__Group_6__0)?
{ after(grammarAccess.getBlipCallActivityAccess().getGroup_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group_5__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group_5__0__Impl
rule__BlipCallActivity__Group_5__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group_5__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getOnentryKeyword_5_0()); }
'onentry'
{ after(grammarAccess.getBlipCallActivityAccess().getOnentryKeyword_5_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group_5__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group_5__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group_5__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getOnEntryAssignment_5_1()); }
(rule__BlipCallActivity__OnEntryAssignment_5_1)
{ after(grammarAccess.getBlipCallActivityAccess().getOnEntryAssignment_5_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group_6__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group_6__0__Impl
rule__BlipCallActivity__Group_6__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group_6__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getOnexitKeyword_6_0()); }
'onexit'
{ after(grammarAccess.getBlipCallActivityAccess().getOnexitKeyword_6_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group_6__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipCallActivity__Group_6__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipCallActivity__Group_6__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipCallActivityAccess().getOnExitAssignment_6_1()); }
(rule__BlipCallActivity__OnExitAssignment_6_1)
{ after(grammarAccess.getBlipCallActivityAccess().getOnExitAssignment_6_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipScriptTask__Group__0__Impl
rule__BlipScriptTask__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipScriptTaskAccess().getBlipScriptTaskAction_0()); }
(
)
{ after(grammarAccess.getBlipScriptTaskAccess().getBlipScriptTaskAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipScriptTask__Group__1__Impl
rule__BlipScriptTask__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipScriptTaskAccess().getScripttaskKeyword_1()); }
'scripttask'
{ after(grammarAccess.getBlipScriptTaskAccess().getScripttaskKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipScriptTask__Group__2__Impl
rule__BlipScriptTask__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipScriptTaskAccess().getNameAssignment_2()); }
(rule__BlipScriptTask__NameAssignment_2)
{ after(grammarAccess.getBlipScriptTaskAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipScriptTask__Group__3__Impl
rule__BlipScriptTask__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipScriptTaskAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipScriptTaskAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipScriptTask__Group__4__Impl
rule__BlipScriptTask__Group__5
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipScriptTaskAccess().getTaskAssignment_4()); }
(rule__BlipScriptTask__TaskAssignment_4)
{ after(grammarAccess.getBlipScriptTaskAccess().getTaskAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__5
@init {
int stackSize = keepStackSize();
}
:
rule__BlipScriptTask__Group__5__Impl
rule__BlipScriptTask__Group__6
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__5__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipScriptTaskAccess().getFunctionKeyword_5()); }
'function'
{ after(grammarAccess.getBlipScriptTaskAccess().getFunctionKeyword_5()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__6
@init {
int stackSize = keepStackSize();
}
:
rule__BlipScriptTask__Group__6__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipScriptTask__Group__6__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipScriptTaskAccess().getFunctionAssignment_6()); }
(rule__BlipScriptTask__FunctionAssignment_6)
{ after(grammarAccess.getBlipScriptTaskAccess().getFunctionAssignment_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPersistTask__Group__0__Impl
rule__BlipPersistTask__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPersistTaskAccess().getBlipPersistTaskAction_0()); }
(
)
{ after(grammarAccess.getBlipPersistTaskAccess().getBlipPersistTaskAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPersistTask__Group__1__Impl
rule__BlipPersistTask__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPersistTaskAccess().getPersisttaskKeyword_1()); }
'persisttask'
{ after(grammarAccess.getBlipPersistTaskAccess().getPersisttaskKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPersistTask__Group__2__Impl
rule__BlipPersistTask__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPersistTaskAccess().getNameAssignment_2()); }
(rule__BlipPersistTask__NameAssignment_2)
{ after(grammarAccess.getBlipPersistTaskAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPersistTask__Group__3__Impl
rule__BlipPersistTask__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPersistTaskAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipPersistTaskAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPersistTask__Group__4__Impl
rule__BlipPersistTask__Group__5
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPersistTaskAccess().getTaskAssignment_4()); }
(rule__BlipPersistTask__TaskAssignment_4)
{ after(grammarAccess.getBlipPersistTaskAccess().getTaskAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__5
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPersistTask__Group__5__Impl
rule__BlipPersistTask__Group__6
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__5__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPersistTaskAccess().getFunctionKeyword_5()); }
'function'
{ after(grammarAccess.getBlipPersistTaskAccess().getFunctionKeyword_5()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__6
@init {
int stackSize = keepStackSize();
}
:
rule__BlipPersistTask__Group__6__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipPersistTask__Group__6__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipPersistTaskAccess().getFunctionAssignment_6()); }
(rule__BlipPersistTask__FunctionAssignment_6)
{ after(grammarAccess.getBlipPersistTaskAccess().getFunctionAssignment_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__0__Impl
rule__BlipServiceTask__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getBlipServiceTaskAction_0()); }
(
)
{ after(grammarAccess.getBlipServiceTaskAccess().getBlipServiceTaskAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__1__Impl
rule__BlipServiceTask__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getServicetaskKeyword_1()); }
'servicetask'
{ after(grammarAccess.getBlipServiceTaskAccess().getServicetaskKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__2__Impl
rule__BlipServiceTask__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getNameAssignment_2()); }
(rule__BlipServiceTask__NameAssignment_2)
{ after(grammarAccess.getBlipServiceTaskAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__3__Impl
rule__BlipServiceTask__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipServiceTaskAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__4__Impl
rule__BlipServiceTask__Group__5
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getTaskAssignment_4()); }
(rule__BlipServiceTask__TaskAssignment_4)
{ after(grammarAccess.getBlipServiceTaskAccess().getTaskAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__5
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__5__Impl
rule__BlipServiceTask__Group__6
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__5__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getGroup_5()); }
(rule__BlipServiceTask__Group_5__0)?
{ after(grammarAccess.getBlipServiceTaskAccess().getGroup_5()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__6
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__6__Impl
rule__BlipServiceTask__Group__7
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__6__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getRunKeyword_6()); }
'run'
{ after(grammarAccess.getBlipServiceTaskAccess().getRunKeyword_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__7
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__7__Impl
rule__BlipServiceTask__Group__8
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__7__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getAlternatives_7()); }
(rule__BlipServiceTask__Alternatives_7)
{ after(grammarAccess.getBlipServiceTaskAccess().getAlternatives_7()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__8
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__8__Impl
rule__BlipServiceTask__Group__9
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__8__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getAsKeyword_8()); }
'as'
{ after(grammarAccess.getBlipServiceTaskAccess().getAsKeyword_8()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__9
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__9__Impl
rule__BlipServiceTask__Group__10
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__9__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getAlternatives_9()); }
(rule__BlipServiceTask__Alternatives_9)
{ after(grammarAccess.getBlipServiceTaskAccess().getAlternatives_9()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__10
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group__10__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group__10__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getGroup_10()); }
(rule__BlipServiceTask__Group_10__0)?
{ after(grammarAccess.getBlipServiceTaskAccess().getGroup_10()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_5__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_5__0__Impl
rule__BlipServiceTask__Group_5__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_5__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getOnentryKeyword_5_0()); }
'onentry'
{ after(grammarAccess.getBlipServiceTaskAccess().getOnentryKeyword_5_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_5__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_5__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_5__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getOnEntryAssignment_5_1()); }
(rule__BlipServiceTask__OnEntryAssignment_5_1)
{ after(grammarAccess.getBlipServiceTaskAccess().getOnEntryAssignment_5_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_7_0__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_7_0__0__Impl
rule__BlipServiceTask__Group_7_0__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_7_0__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getAsynchronWithKeyword_7_0_0()); }
'asynchron with'
{ after(grammarAccess.getBlipServiceTaskAccess().getAsynchronWithKeyword_7_0_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_7_0__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_7_0__1__Impl
rule__BlipServiceTask__Group_7_0__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_7_0__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getTimeoutInSecsAssignment_7_0_1()); }
(rule__BlipServiceTask__TimeoutInSecsAssignment_7_0_1)
{ after(grammarAccess.getBlipServiceTaskAccess().getTimeoutInSecsAssignment_7_0_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_7_0__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_7_0__2__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_7_0__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getSecsTimeoutKeyword_7_0_2()); }
'secs timeout'
{ after(grammarAccess.getBlipServiceTaskAccess().getSecsTimeoutKeyword_7_0_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_9_0__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_9_0__0__Impl
rule__BlipServiceTask__Group_9_0__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_9_0__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getFunctionKeyword_9_0_0()); }
'function'
{ after(grammarAccess.getBlipServiceTaskAccess().getFunctionKeyword_9_0_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_9_0__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_9_0__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_9_0__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getFunctionAssignment_9_0_1()); }
(rule__BlipServiceTask__FunctionAssignment_9_0_1)
{ after(grammarAccess.getBlipServiceTaskAccess().getFunctionAssignment_9_0_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_9_1__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_9_1__0__Impl
rule__BlipServiceTask__Group_9_1__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_9_1__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getWebserviceKeyword_9_1_0()); }
'webservice'
{ after(grammarAccess.getBlipServiceTaskAccess().getWebserviceKeyword_9_1_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_9_1__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_9_1__1__Impl
rule__BlipServiceTask__Group_9_1__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_9_1__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getWebServiceInterfaceAssignment_9_1_1()); }
(rule__BlipServiceTask__WebServiceInterfaceAssignment_9_1_1)
{ after(grammarAccess.getBlipServiceTaskAccess().getWebServiceInterfaceAssignment_9_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_9_1__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_9_1__2__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_9_1__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getWebServiceOperationAssignment_9_1_2()); }
(rule__BlipServiceTask__WebServiceOperationAssignment_9_1_2)
{ after(grammarAccess.getBlipServiceTaskAccess().getWebServiceOperationAssignment_9_1_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_10__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_10__0__Impl
rule__BlipServiceTask__Group_10__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_10__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getOnexitKeyword_10_0()); }
'onexit'
{ after(grammarAccess.getBlipServiceTaskAccess().getOnexitKeyword_10_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_10__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipServiceTask__Group_10__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipServiceTask__Group_10__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipServiceTaskAccess().getOnExitAssignment_10_1()); }
(rule__BlipServiceTask__OnExitAssignment_10_1)
{ after(grammarAccess.getBlipServiceTaskAccess().getOnExitAssignment_10_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoing__Group__0__Impl
rule__BlipOutGoing__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingAccess().getBlipOutGoingAction_0()); }
(
)
{ after(grammarAccess.getBlipOutGoingAccess().getBlipOutGoingAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoing__Group__1__Impl
rule__BlipOutGoing__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingAccess().getCaseKeyword_1()); }
'case'
{ after(grammarAccess.getBlipOutGoingAccess().getCaseKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoing__Group__2__Impl
rule__BlipOutGoing__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingAccess().getNameAssignment_2()); }
(rule__BlipOutGoing__NameAssignment_2)
{ after(grammarAccess.getBlipOutGoingAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoing__Group__3__Impl
rule__BlipOutGoing__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipOutGoingAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoing__Group__4__Impl
rule__BlipOutGoing__Group__5
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingAccess().getSequenceFlowAssignment_4()); }
(rule__BlipOutGoing__SequenceFlowAssignment_4)
{ after(grammarAccess.getBlipOutGoingAccess().getSequenceFlowAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__5
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoing__Group__5__Impl
rule__BlipOutGoing__Group__6
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__5__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingAccess().getWhenKeyword_5()); }
'when'
{ after(grammarAccess.getBlipOutGoingAccess().getWhenKeyword_5()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__6
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoing__Group__6__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoing__Group__6__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingAccess().getConstraintAssignment_6()); }
(rule__BlipOutGoing__ConstraintAssignment_6)
{ after(grammarAccess.getBlipOutGoingAccess().getConstraintAssignment_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoingDefault__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoingDefault__Group__0__Impl
rule__BlipOutGoingDefault__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoingDefault__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingDefaultAccess().getBlipOutGoingDefaultAction_0()); }
(
)
{ after(grammarAccess.getBlipOutGoingDefaultAccess().getBlipOutGoingDefaultAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoingDefault__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoingDefault__Group__1__Impl
rule__BlipOutGoingDefault__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoingDefault__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingDefaultAccess().getIsDefaultAssignment_1()); }
(rule__BlipOutGoingDefault__IsDefaultAssignment_1)
{ after(grammarAccess.getBlipOutGoingDefaultAccess().getIsDefaultAssignment_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoingDefault__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoingDefault__Group__2__Impl
rule__BlipOutGoingDefault__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoingDefault__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingDefaultAccess().getNameAssignment_2()); }
(rule__BlipOutGoingDefault__NameAssignment_2)
{ after(grammarAccess.getBlipOutGoingDefaultAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoingDefault__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoingDefault__Group__3__Impl
rule__BlipOutGoingDefault__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoingDefault__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingDefaultAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipOutGoingDefaultAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoingDefault__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipOutGoingDefault__Group__4__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipOutGoingDefault__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipOutGoingDefaultAccess().getSequenceFlowAssignment_4()); }
(rule__BlipOutGoingDefault__SequenceFlowAssignment_4)
{ after(grammarAccess.getBlipOutGoingDefaultAccess().getSequenceFlowAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipExclusiveSplitGateway__Group__0__Impl
rule__BlipExclusiveSplitGateway__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getBlipExclusiveSplitGatewayAction_0()); }
(
)
{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getBlipExclusiveSplitGatewayAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipExclusiveSplitGateway__Group__1__Impl
rule__BlipExclusiveSplitGateway__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getExclusivesplitgatewayKeyword_1()); }
'exclusivesplitgateway'
{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getExclusivesplitgatewayKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipExclusiveSplitGateway__Group__2__Impl
rule__BlipExclusiveSplitGateway__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getNameAssignment_2()); }
(rule__BlipExclusiveSplitGateway__NameAssignment_2)
{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipExclusiveSplitGateway__Group__3__Impl
rule__BlipExclusiveSplitGateway__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipExclusiveSplitGateway__Group__4__Impl
rule__BlipExclusiveSplitGateway__Group__5
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGatewayAssignment_4()); }
(rule__BlipExclusiveSplitGateway__GatewayAssignment_4)
{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGatewayAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__5
@init {
int stackSize = keepStackSize();
}
:
rule__BlipExclusiveSplitGateway__Group__5__Impl
rule__BlipExclusiveSplitGateway__Group__6
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__5__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getLeftCurlyBracketKeyword_5()); }
'{'
{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getLeftCurlyBracketKeyword_5()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__6
@init {
int stackSize = keepStackSize();
}
:
rule__BlipExclusiveSplitGateway__Group__6__Impl
rule__BlipExclusiveSplitGateway__Group__7
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__6__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getOutgoingsAssignment_6()); }
(rule__BlipExclusiveSplitGateway__OutgoingsAssignment_6)*
{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getOutgoingsAssignment_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__7
@init {
int stackSize = keepStackSize();
}
:
rule__BlipExclusiveSplitGateway__Group__7__Impl
rule__BlipExclusiveSplitGateway__Group__8
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__7__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getOutgoingsAssignment_7()); }
(rule__BlipExclusiveSplitGateway__OutgoingsAssignment_7)
{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getOutgoingsAssignment_7()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__8
@init {
int stackSize = keepStackSize();
}
:
rule__BlipExclusiveSplitGateway__Group__8__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipExclusiveSplitGateway__Group__8__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getRightCurlyBracketKeyword_8()); }
'}'
{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getRightCurlyBracketKeyword_8()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipInclusiveSplitGateway__Group__0__Impl
rule__BlipInclusiveSplitGateway__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getBlipInclusiveSplitGatewayAction_0()); }
(
)
{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getBlipInclusiveSplitGatewayAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipInclusiveSplitGateway__Group__1__Impl
rule__BlipInclusiveSplitGateway__Group__2
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getInclusivesplitgatewayKeyword_1()); }
'inclusivesplitgateway'
{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getInclusivesplitgatewayKeyword_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__2
@init {
int stackSize = keepStackSize();
}
:
rule__BlipInclusiveSplitGateway__Group__2__Impl
rule__BlipInclusiveSplitGateway__Group__3
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__2__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getNameAssignment_2()); }
(rule__BlipInclusiveSplitGateway__NameAssignment_2)
{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getNameAssignment_2()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__3
@init {
int stackSize = keepStackSize();
}
:
rule__BlipInclusiveSplitGateway__Group__3__Impl
rule__BlipInclusiveSplitGateway__Group__4
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__3__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getForKeyword_3()); }
'for'
{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getForKeyword_3()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__4
@init {
int stackSize = keepStackSize();
}
:
rule__BlipInclusiveSplitGateway__Group__4__Impl
rule__BlipInclusiveSplitGateway__Group__5
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__4__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGatewayAssignment_4()); }
(rule__BlipInclusiveSplitGateway__GatewayAssignment_4)
{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGatewayAssignment_4()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__5
@init {
int stackSize = keepStackSize();
}
:
rule__BlipInclusiveSplitGateway__Group__5__Impl
rule__BlipInclusiveSplitGateway__Group__6
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__5__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getLeftCurlyBracketKeyword_5()); }
'{'
{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getLeftCurlyBracketKeyword_5()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__6
@init {
int stackSize = keepStackSize();
}
:
rule__BlipInclusiveSplitGateway__Group__6__Impl
rule__BlipInclusiveSplitGateway__Group__7
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__6__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getOutgoingsAssignment_6()); }
(rule__BlipInclusiveSplitGateway__OutgoingsAssignment_6)*
{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getOutgoingsAssignment_6()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__7
@init {
int stackSize = keepStackSize();
}
:
rule__BlipInclusiveSplitGateway__Group__7__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipInclusiveSplitGateway__Group__7__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getRightCurlyBracketKeyword_7()); }
'}'
{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getRightCurlyBracketKeyword_7()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipDtoPath__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__BlipDtoPath__Group__0__Impl
rule__BlipDtoPath__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__BlipDtoPath__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipDtoPathAccess().getBlipDtoPathAction_0()); }
(
)
{ after(grammarAccess.getBlipDtoPathAccess().getBlipDtoPathAction_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__BlipDtoPath__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__BlipDtoPath__Group__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__BlipDtoPath__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getBlipDtoPathAccess().getDtoPathAssignment_1()); }
(rule__BlipDtoPath__DtoPathAssignment_1)
{ after(grammarAccess.getBlipDtoPathAccess().getDtoPathAssignment_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedDtoPath__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__QualifiedDtoPath__Group__0__Impl
rule__QualifiedDtoPath__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedDtoPath__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedDtoPathAccess().getValidIDParserRuleCall_0()); }
ruleValidID
{ after(grammarAccess.getQualifiedDtoPathAccess().getValidIDParserRuleCall_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedDtoPath__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__QualifiedDtoPath__Group__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedDtoPath__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedDtoPathAccess().getGroup_1()); }
(rule__QualifiedDtoPath__Group_1__0)*
{ after(grammarAccess.getQualifiedDtoPathAccess().getGroup_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedDtoPath__Group_1__0
@init {
int stackSize = keepStackSize();
}
:
rule__QualifiedDtoPath__Group_1__0__Impl
rule__QualifiedDtoPath__Group_1__1
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedDtoPath__Group_1__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedDtoPathAccess().getFullStopKeyword_1_0()); }
(
'.'
)
{ after(grammarAccess.getQualifiedDtoPathAccess().getFullStopKeyword_1_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedDtoPath__Group_1__1
@init {
int stackSize = keepStackSize();
}
:
rule__QualifiedDtoPath__Group_1__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedDtoPath__Group_1__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedDtoPathAccess().getValidIDParserRuleCall_1_1()); }
ruleValidID
{ after(grammarAccess.getQualifiedDtoPathAccess().getValidIDParserRuleCall_1_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedName__Group__0
@init {
int stackSize = keepStackSize();
}
:
rule__QualifiedName__Group__0__Impl
rule__QualifiedName__Group__1
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedName__Group__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); }
ruleValidID
{ after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedName__Group__1
@init {
int stackSize = keepStackSize();
}
:
rule__QualifiedName__Group__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedName__Group__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedNameAccess().getGroup_1()); }
(rule__QualifiedName__Group_1__0)*
{ after(grammarAccess.getQualifiedNameAccess().getGroup_1()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedName__Group_1__0
@init {
int stackSize = keepStackSize();
}
:
rule__QualifiedName__Group_1__0__Impl
rule__QualifiedName__Group_1__1
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedName__Group_1__0__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); }
(
'.'
)
{ after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); }
)
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedName__Group_1__1
@init {
int stackSize = keepStackSize();
}
:
rule__QualifiedName__Group_1__1__Impl
;
finally {
restoreStackSize(stackSize);
}
rule__QualifiedName__Group_1__1__Impl
@init {
int stackSize = keepStackSize();
}
:
(
{ before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); }
ruleValidID