Uses of Class
de.mirkosertic.bytecoder.core.backend.wasm.ast.Container
-
Packages that use Container Package Description de.mirkosertic.bytecoder.core.backend.wasm de.mirkosertic.bytecoder.core.backend.wasm.ast -
-
Uses of Container in de.mirkosertic.bytecoder.core.backend.wasm
Classes in de.mirkosertic.bytecoder.core.backend.wasm with type parameters of type Container Modifier and Type Class Description (package private) static class
WasmStructuredControlflowCodeGenerator.NestingLevel<T extends Container>
Fields in de.mirkosertic.bytecoder.core.backend.wasm declared as Container Modifier and Type Field Description (package private) T
WasmStructuredControlflowCodeGenerator.NestingLevel. activeContainer
-
Uses of Container in de.mirkosertic.bytecoder.core.backend.wasm.ast
Subclasses of Container in de.mirkosertic.bytecoder.core.backend.wasm.ast Modifier and Type Class Description class
Block
class
Catch
class
ExportableFunction
class
Function
class
Iff
class
LabeledContainer
class
Loop
class
Try
Fields in de.mirkosertic.bytecoder.core.backend.wasm.ast declared as Container Modifier and Type Field Description private Container
ExportableFunction.DefaultExportContext. owningContainer
private Container
Container. parent
private Container
Expressions. parent
Methods in de.mirkosertic.bytecoder.core.backend.wasm.ast that return Container Modifier and Type Method Description Container
Container. end()
Container
ExportableFunction.DefaultExportContext. owningContainer()
Container
WasmValue.ExportContext. owningContainer()
Container
Container. parent()
Container
Expressions. parent()
Methods in de.mirkosertic.bytecoder.core.backend.wasm.ast with parameters of type Container Modifier and Type Method Description WasmValue.ExportContext
ExportableFunction.DefaultExportContext. subWith(Container container)
WasmValue.ExportContext
WasmValue.ExportContext. subWith(Container container)
Constructors in de.mirkosertic.bytecoder.core.backend.wasm.ast with parameters of type Container Constructor Description Block(java.lang.String label, Container parent)
Catch(Container parent, Tag catchTag)
Container(Container parent)
DefaultExportContext(Container owningContainer, FunctionIndex functionIndex)
Expressions(Container parent)
Iff(Container parent, java.lang.String label, WasmValue condition)
LabeledContainer(Container parent, java.lang.String label)
Loop(java.lang.String label, Container parent)
Try(Container parent, java.lang.String label, Tag catchTag)
-