Пример #1
0
 public BuilderInstruction23x(
     @Nonnull Opcode opcode, int registerA, int registerB, int registerC) {
   super(opcode);
   this.registerA = Preconditions.checkByteRegister(registerA);
   this.registerB = Preconditions.checkByteRegister(registerB);
   this.registerC = Preconditions.checkByteRegister(registerC);
 }
 public ImmutableInstruction51l(@Nonnull Opcode opcode, int registerA, long literal) {
   super(opcode);
   this.registerA = Preconditions.checkByteRegister(registerA);
   this.literal = literal;
 }