public CstInsn(Rop opcode, SourcePosition position, RegisterSpec result, RegisterSpecList sources, com.android.dexgen.rop.cst.Constant cst)Constructs an instance.
super(opcode, position, result, sources);
if (cst == null) {
throw new NullPointerException("cst == null");
}
this.cst = cst;
|