Class Iff
- java.lang.Object
-
- de.mirkosertic.bytecoder.core.backend.wasm.ast.Container
-
- de.mirkosertic.bytecoder.core.backend.wasm.ast.LabeledContainer
-
- de.mirkosertic.bytecoder.core.backend.wasm.ast.Iff
-
- All Implemented Interfaces:
WasmExpression
,WasmValue
public class Iff extends LabeledContainer implements WasmExpression
-
-
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 WasmValue
condition
private java.util.List<WasmExpression>
falseChildren
Expressions
falseFlow
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
writeTo(BinaryWriter.Writer codeWriter, WasmValue.ExportContext context)
void
writeTo(TextWriter textWriter, WasmValue.ExportContext context)
-
Methods inherited from class de.mirkosertic.bytecoder.core.backend.wasm.ast.LabeledContainer
findByLabelInHierarchy, getLabel
-
Methods inherited from class de.mirkosertic.bytecoder.core.backend.wasm.ast.Container
addChild, end, getChildren, hasChildren, parent, relativeDepthTo, relativeDepthTo
-
-
-
-
Field Detail
-
falseFlow
public final Expressions falseFlow
-
condition
private final WasmValue condition
-
falseChildren
private final java.util.List<WasmExpression> falseChildren
-
-
Method Detail
-
writeTo
public void writeTo(TextWriter textWriter, WasmValue.ExportContext context) throws java.io.IOException
-
writeTo
public void writeTo(BinaryWriter.Writer codeWriter, WasmValue.ExportContext context) throws java.io.IOException
-
-