Uses of Class
de.mirkosertic.bytecoder.core.backend.wasm.ast.TypesSection
-
Packages that use TypesSection Package Description de.mirkosertic.bytecoder.core.backend.wasm.ast -
-
Uses of TypesSection in de.mirkosertic.bytecoder.core.backend.wasm.ast
Fields in de.mirkosertic.bytecoder.core.backend.wasm.ast declared as TypesSection Modifier and Type Field Description private TypesSection
ArrayType. section
private TypesSection
Module. types
private TypesSection
FunctionType. typesSection
protected TypesSection
StructType. typesSection
Methods in de.mirkosertic.bytecoder.core.backend.wasm.ast that return TypesSection Modifier and Type Method Description TypesSection
Module. getTypes()
Constructors in de.mirkosertic.bytecoder.core.backend.wasm.ast with parameters of type TypesSection Constructor Description ArrayType(TypesSection section, WasmType elementType)
FunctionType(TypesSection section, WasmType resultType)
FunctionType(TypesSection section, java.util.List<WasmType> parameter)
FunctionType(TypesSection section, java.util.List<WasmType> parameter, WasmType resultType)
StructSubtype(TypesSection section, java.lang.String name, StructType supertype, java.util.List<StructType.Field> fields)
StructType(TypesSection section, java.lang.String name, java.util.List<StructType.Field> fields)
-