org.eclipse.xtext.ide.editor.contentassist.antlr.AbstractContentAssistParser Java Examples
The following examples show how to use
org.eclipse.xtext.ide.editor.contentassist.antlr.AbstractContentAssistParser.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Bug282031ParserTest.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
protected Collection<FollowElement> getFollowSet(String input) { AbstractContentAssistParser parser = get(LookAheadContentAssistTestLanguageParser.class); return parser.getFollowElements(input, false); }
Example #2
Source File: Bug281198ParserTest.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
protected Collection<FollowElement> getFollowSet(String input) { AbstractContentAssistParser parser = get(DatatypeRuleTestLanguageParser.class); return parser.getFollowElements(input, false); }
Example #3
Source File: ParserTest.java From xtext-core with Eclipse Public License 2.0 | 4 votes |
@Override protected Collection<FollowElement> getFollowSet(String input) throws RecognitionException { AbstractContentAssistParser parser = this.parser; return parser.getFollowElements(input, false); }