Class BranchManager.IfPositions
- java.lang.Object
-
- de.inetsoftware.jwebassembly.module.BranchManager.IfPositions
-
- Enclosing class:
- BranchManager
private static class BranchManager.IfPositions extends java.lang.Object
Positions inside a IF control structure.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
IfPositions()
-
-
-
Field Detail
-
ifCount
private int ifCount
Count of boolean operations in the IF top level condition. This can be (&&) or (||) operations.
-
thenPos
private int thenPos
The position of the first instruction in the THEN part.
-
elsePos
private int elsePos
The position of the first instruction in the ELSE part.
-
-