PlainCstInsnpublic final class PlainCstInsn extends CstInsn Instruction which contains an explicit reference to a constant
but which cannot throw an exception. |
Methods Summary |
---|
public void | accept(Visitor visitor){@inheritDoc}
visitor.visitPlainCstInsn(this);
| public com.android.dx.rop.type.TypeList | getCatches(){@inheritDoc}
return StdTypeList.EMPTY;
| public Insn | withAddedCatch(com.android.dx.rop.type.Type type){@inheritDoc}
throw new UnsupportedOperationException("unsupported");
| public Insn | withNewRegisters(RegisterSpec result, RegisterSpecList sources){@inheritDoc}
return new PlainCstInsn(getOpcode(), getPosition(),
result,
sources,
getConstant());
| public Insn | withRegisterOffset(int delta){@inheritDoc}
return new PlainCstInsn(getOpcode(), getPosition(),
getResult().withOffset(delta),
getSources().withOffset(delta),
getConstant());
|
|