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

    if s2 
    then "then2" 
    else 
        if s1 
        then "then" 
        else "else" 


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


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

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

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

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

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

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

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

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

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

