953954955956957958959960961962
} set(node, inv); } @Override public void visitTypeTest(JCInstanceOf node) { InstanceOf io = new InstanceOf(); io.rawTypeReference(toTree(node.getType(), FlagKey.TYPE_REFERENCE)); io.rawObjectReference(toTree(node.getExpression())); set(node, io); }
161162163164165166167
return current; } public Node createInstanceOfExpression(Node operand, Node type) { if (type == null) return operand; return posify(new InstanceOf().rawObjectReference(operand).rawTypeReference(type)); }