use of org.dbflute.twowaysql.node.BeginNode in project dbflute-core by dbflute.
the class SqlAnalyzer method parseBegin.
protected void parseBegin() {
final BeginNode beginNode = createBeginNode();
try {
_inBeginScope = true;
peek().addChild(beginNode);
push(beginNode);
parseEnd();
} finally {
_inBeginScope = false;
}
}
Aggregations