org.eclipse.xtext.parser.impl.TokenRegionProvider Java Examples

The following examples show how to use org.eclipse.xtext.parser.impl.TokenRegionProvider. 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: TokenRegionProviderTest.java    From xtext-core with Eclipse Public License 2.0 5 votes vote down vote up
@Override
@Before
public void setUp() throws Exception {
	super.setUp();
	with(SimpleExpressionsTestLanguageStandaloneSetup.class);
	tokenRegionProvider = get(TokenRegionProvider.class);
}
 
Example #2
Source File: XtendRuntimeModule.java    From xtext-xtend with Eclipse Public License 2.0 4 votes vote down vote up
public Class<? extends TokenRegionProvider> bindTokenRegionProvider() {
	return FlexTokenRegionProvider.class;
}
 
Example #3
Source File: FixedPartialParsingHelper.java    From dsl-devkit with Eclipse Public License 1.0 4 votes vote down vote up
/**
 * @since 2.3
 */
public void setTokenRegionProvider(final TokenRegionProvider tokenRegionProvider) {
  this.tokenRegionProvider = tokenRegionProvider;
}
 
Example #4
Source File: AbstractSARLRuntimeModule.java    From sarl with Apache License 2.0 4 votes vote down vote up
public Class<? extends TokenRegionProvider> bindTokenRegionProvider() {
	return TokenRegionProvider.class;
}