//New object instances.
public void visitNEW(NEW instruction) {
ObjectType type = instruction.getLoadClassType(this.context.getMethodGen().getConstantPool());
Type t = instruction.getType(this.context.getMethodGen().getConstantPool());
LOG.debug("New object: "+t +", "+type);
NewInstance instance = new NewInstance(context.getCurrentInstruction(), type);
context.getExpressions().push(instance);
}