BytecodeValue val = args.get(i);
String name = params.get(i);
context.addToContext(name, val);
}
Interpreter interperter = new Interpreter(body, context);
BytecodeValue res = interperter.execute();
return res;
}
@Override
public BytecodeValue doInvoke(BytecodeValue operand, String op) {