if (!expr) context.consumeCurrentValue();
}
}
public void compilePostExe(Node node, BodyCompiler context, boolean expr) {
final PostExeNode postExeNode = (PostExeNode) node;
// create the closure class and instantiate it
final CompilerCallback closureBody = new CompilerCallback() {
public void call(BodyCompiler context) {
if (postExeNode.getBodyNode() != null) {
compile(postExeNode.getBodyNode(), context, true);
} else {
context.loadNil();
}
}
};