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

    if 
        if s1 
        then false 
        else true 
    
    then "then" 
    else "else" 


-- COMPILED EXPRESSION:
[0x0000-0x004f] stackSize: 1, maxStackSize: 1
0x0000: pushAccessVal(accessor: <accessor>);
0x0009: jmpNothing(target: 0x002c);
0x000e: jmpTrue(target: 0x0022);
0x0013: pushConstVal(value: true);
0x001d: jmp(target: 0x002c);
0x0022: pushConstVal(value: false);
0x002c: jmpNothing(target: 0x004f);
0x0031: jmpTrue(target: 0x0045);
0x0036: pushConstVal(value: "else");
0x0040: jmp(target: 0x004f);
0x0045: pushConstVal(value: "then");


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

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

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

