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

    if s1 
    then "then" 
    else "else" 


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


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

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

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

