Uses of Class
de.inetsoftware.jwebassembly.wasm.VariableOperator
-
Packages that use VariableOperator Package Description de.inetsoftware.jwebassembly.binary de.inetsoftware.jwebassembly.module de.inetsoftware.jwebassembly.text de.inetsoftware.jwebassembly.wasm -
-
Uses of VariableOperator in de.inetsoftware.jwebassembly.binary
Methods in de.inetsoftware.jwebassembly.binary with parameters of type VariableOperator Modifier and Type Method Description protected void
BinaryModuleWriter. writeLocal(VariableOperator op, int idx)
Write a local variable operation. -
Uses of VariableOperator in de.inetsoftware.jwebassembly.module
Fields in de.inetsoftware.jwebassembly.module declared as VariableOperator Modifier and Type Field Description private VariableOperator
WasmLocalInstruction. op
Methods in de.inetsoftware.jwebassembly.module that return VariableOperator Modifier and Type Method Description (package private) VariableOperator
WasmLocalInstruction. getOperator()
Get the operatorMethods in de.inetsoftware.jwebassembly.module with parameters of type VariableOperator Modifier and Type Method Description protected void
WasmCodeBuilder. addLocalInstruction(VariableOperator op, int wasmIdx, int javaCodePos, int lineNumber)
Create a WasmLoadStoreInstruction local.get/local.set.(package private) void
WasmLocalInstruction. setOperator(VariableOperator op)
Set the operatorprotected abstract void
ModuleWriter. writeLocal(VariableOperator op, int idx)
Write a local variable operation.Constructors in de.inetsoftware.jwebassembly.module with parameters of type VariableOperator Constructor Description WasmLoadStoreInstruction(VariableOperator op, int slot, LocaleVariableManager localVariables, int javaCodePos, int lineNumber)
Create an instance of a load/store instructionWasmLocalInstruction(VariableOperator op, int idx, LocaleVariableManager localVariables, int javaCodePos, int lineNumber)
Create an instance of a load/store instruction for a local variable. -
Uses of VariableOperator in de.inetsoftware.jwebassembly.text
Methods in de.inetsoftware.jwebassembly.text with parameters of type VariableOperator Modifier and Type Method Description protected void
TextModuleWriter. writeLocal(VariableOperator op, int idx)
Write a local variable operation. -
Uses of VariableOperator in de.inetsoftware.jwebassembly.wasm
Methods in de.inetsoftware.jwebassembly.wasm that return VariableOperator Modifier and Type Method Description static VariableOperator
VariableOperator. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VariableOperator[]
VariableOperator. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-