[Xtext] Make org.eclipse.xtext.parser.antlr.AbstractInternalAntlrParser.currentNode protected see https://bugs.eclipse.org/bugs/show_bug.cgi?id=486469

This commit is contained in:
Holger Schill 2016-01-25 13:47:39 +01:00
parent 1b4e4ac0fd
commit 81b14fcc17

View file

@ -242,6 +242,13 @@ public abstract class AbstractInternalAntlrParser extends Parser {
return input;
}
/**
* @since 2.10
*/
protected ICompositeNode getCurrentNode() {
return currentNode;
}
protected abstract IGrammarAccess getGrammarAccess();
protected void associateNodeWithAstElement(ICompositeNode node, EObject astElement) {