private EvaluatorContext evaluateInstructions() {
RuntimeFrame frame = new RuntimeFrame(context.constantPool, context.method
.getVariableTable());
for (Instruction ins : context.list.getAllInstructions()) {
frame.evaluateInstruction(ins);
}
return frame.getEvaluationContext();
}