Class CallRef
- java.lang.Object
-
- de.mirkosertic.bytecoder.core.backend.wasm.ast.CallRef
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface de.mirkosertic.bytecoder.core.backend.wasm.ast.WasmValue
WasmValue.ExportContext
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<WasmValue>
arguments
private FunctionType
type
-
Constructor Summary
Constructors Constructor Description CallRef(FunctionType type, java.util.List<WasmValue> arguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
writeTo(BinaryWriter.Writer binaryWriter, WasmValue.ExportContext context)
void
writeTo(TextWriter textWriter, WasmValue.ExportContext context)
-
-
-
Field Detail
-
type
private final FunctionType type
-
arguments
private final java.util.List<WasmValue> arguments
-
-
Constructor Detail
-
CallRef
CallRef(FunctionType type, java.util.List<WasmValue> arguments)
-
-
Method Detail
-
writeTo
public void writeTo(TextWriter textWriter, WasmValue.ExportContext context) throws java.io.IOException
-
writeTo
public void writeTo(BinaryWriter.Writer binaryWriter, WasmValue.ExportContext context) throws java.io.IOException
-
-