CodeEmitter.java | 423 public void getfield(String name) { method in class:CodeEmitter 425 int opcode = TypeUtils.isStatic(info.access) ? Constants.GETSTATIC : Constants.GETFIELD; 436 emit_field(Constants.GETFIELD, ce.getSuperType(), name, type); 451 public void getfield(Type owner, String name, Type type) { method in class:CodeEmitter 452 emit_field(Constants.GETFIELD, owner, name, type);
|