Package com.dylibso.chicory.wasm.types
Class PassiveElement
java.lang.Object
com.dylibso.chicory.wasm.types.Element
com.dylibso.chicory.wasm.types.PassiveElement
A passive element.
A passive element can be copied into a table using the
table.init instruction.-
Constructor Summary
ConstructorsConstructorDescriptionPassiveElement(ValueType type, List<List<Instruction>> initializers) Construct a new instance. -
Method Summary
Methods inherited from class com.dylibso.chicory.wasm.types.Element
elementCount, equals, hashCode, initializers, type
-
Constructor Details
-
PassiveElement
Construct a new instance.- Parameters:
type- the type of the element values (must not benull)initializers- the list of instruction lists which are used to initialize each element in the range (must not benull)
-