}
public MethodInfo getMethodInfo(Object base, EvaluationContext ctx, Class[] paramTypes) throws ELException {
VariableMapper orig = ctx.getVariableMapper();
ctx.setVariableMapper(new ClosureVariableMapper(orig, this.image, base));
MethodInfo result = null;
try {
result = this.children[0].getMethodInfo(ctx, paramTypes);
} finally {
ctx.setVariableMapper(orig);
}