context = _ctx;
}
public Block extractAST() {
EvaluatorContext evalInfo = evaluateInstructions();
// After evaluating all the instructions -
// the EvaluatorContext in RuntimeFrame
// would have consolidated the list of statements in the program/
// (ignoring all control flows).
// We are retrieving the same.
return inferBlocks(evalInfo.getStatements());
}