mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 16:58:56 +00:00
[xbase][serialization] Added some tests for combinations of XShortClosure and the builder syntax, some fixes in semantic and syntactic sequence customizations
This commit is contained in:
parent
e1c0c2e0ba
commit
6fadbb2109
1 changed files with 6 additions and 2 deletions
|
@ -70,10 +70,14 @@ public abstract class AbstractSyntacticSequencer implements ISyntacticSequencer,
|
|||
this.stack = new RuleCallStack();
|
||||
}
|
||||
|
||||
protected INode getLastNode() {
|
||||
public INode getLastNode() {
|
||||
return lastNode;
|
||||
}
|
||||
|
||||
|
||||
public RuleCallStack getStack() {
|
||||
return stack;
|
||||
}
|
||||
|
||||
protected void setLastNode(INode lastNode) {
|
||||
this.lastNode = lastNode;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue