# Golden test output of SBEIfTest/NestedIfThen
-- INPUT EXPRESSION:

    if s2 
    then 
        if s1 
        then "then" 
        else "else" 
    
    else "else2" 


-- COMPILED EXPRESSION:
[0x0000-0x004e] stackSize: 1, maxStackSize: 1
0x0000: pushAccessVal(accessor: <accessor>);
0x0009: jmpNothing(target: 0x004e);
0x000e: jmpTrue(target: 0x0022);
0x0013: pushConstVal(value: "else2");
0x001d: jmp(target: 0x004e);
0x0022: pushAccessVal(accessor: <accessor>);
0x002b: jmpNothing(target: 0x004e);
0x0030: jmpTrue(target: 0x0044);
0x0035: pushConstVal(value: "else");
0x003f: jmp(target: 0x004e);
0x0044: pushConstVal(value: "then");


-- EXECUTE VARIATION:
SLOTS: [1: Nothing, 2: Nothing]
RESULT: Nothing

-- EXECUTE VARIATION:
SLOTS: [1: Nothing, 2: false]
RESULT: "else2"

-- EXECUTE VARIATION:
SLOTS: [1: Nothing, 2: true]
RESULT: Nothing

-- EXECUTE VARIATION:
SLOTS: [1: false, 2: Nothing]
RESULT: Nothing

-- EXECUTE VARIATION:
SLOTS: [1: false, 2: false]
RESULT: "else2"

-- EXECUTE VARIATION:
SLOTS: [1: false, 2: true]
RESULT: "else"

-- EXECUTE VARIATION:
SLOTS: [1: true, 2: Nothing]
RESULT: Nothing

-- EXECUTE VARIATION:
SLOTS: [1: true, 2: false]
RESULT: "else2"

-- EXECUTE VARIATION:
SLOTS: [1: true, 2: true]
RESULT: "then"

