/* * generated by Xtext */ package simulator.parser.antlr; import org.antlr.runtime.CharStream; import org.antlr.runtime.TokenSource; import org.eclipse.xtext.parser.IParseResult; import org.eclipse.xtext.parser.ParseException; import org.eclipse.xtext.parser.antlr.XtextTokenStream; import com.google.inject.Inject; import simulator.services.SpecificationLanguageGrammarAccess; public class SpecificationLanguageParser extends org.eclipse.xtext.parser.antlr.AbstractAntlrParser { @Inject private SpecificationLanguageGrammarAccess grammarAccess; @Override protected IParseResult parse(String ruleName, CharStream in) { TokenSource tokenSource = createLexer(in); XtextTokenStream tokenStream = createTokenStream(tokenSource); tokenStream.setInitialHiddenTokens("RULE_WS", "RULE_ML_COMMENT", "RULE_SL_COMMENT"); simulator.parser.antlr.internal.InternalSpecificationLanguageParser parser = createParser(tokenStream); parser.setTokenTypeMap(getTokenDefProvider().getTokenDefMap()); parser.setSyntaxErrorProvider(getSyntaxErrorProvider()); parser.setUnorderedGroupHelper(getUnorderedGroupHelper().get()); try { if(ruleName != null) return parser.parse(ruleName); return parser.parse(); } catch (Exception re) { throw new ParseException(re.getMessage(),re); } } protected simulator.parser.antlr.internal.InternalSpecificationLanguageParser createParser(XtextTokenStream stream) { return new simulator.parser.antlr.internal.InternalSpecificationLanguageParser(stream, getElementFactory(), getGrammarAccess()); } @Override protected String getDefaultRuleName() { return "Specification"; } public SpecificationLanguageGrammarAccess getGrammarAccess() { return this.grammarAccess; } public void setGrammarAccess(SpecificationLanguageGrammarAccess grammarAccess) { this.grammarAccess = grammarAccess; } }