class InstructionsBuilder extends AnyRef
A buffer for creating bytecode arrays that automatically adds the required null entries.
- Alphabetic
- By Inheritance
- InstructionsBuilder
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new InstructionsBuilder(initialSize: Int)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
++=(instructions: Array[Instruction]): Unit
Adds the given instructions as is to this builder.
Adds the given instructions as is to this builder. Hence, the instructions already have to use the required layout.
-
final
def
++=(value: ConstantLengthInstruction): Unit
Adds the given instruction to the buffer and adds the appropriate number of
nullvalues to the array such that the instruction occupies exactly so many slots as required by the JVM specification. -
def
++=(value: Instruction, slots: Int): Unit
Adds the given instruction to the buffer and adds the appropriate number of
nullvalues to the array such that the instruction occupies exactly so many slots as specified byslots.Adds the given instruction to the buffer and adds the appropriate number of
nullvalues to the array such that the instruction occupies exactly so many slots as specified byslots. Hence,sloteshas to be >= 1. -
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
result(): Array[Instruction]
Returns the build instructions array; this builder is not to be used afterwards.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )