Apply Op -- given two arguments, A and B, uses the
value of A as an argument to B, in other workds "B(A())".
Rearranges arguments to make
"(getField isNull)"
be more like
new Op() {
public boolean execute(Object o) {
Object tmp = "getField".getObject(o);
return "is:Null".execute(tmp);
}
}