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

    if !(s1) 
    then "then" 
    else "else" 


-- COMPILED EXPRESSION:
[0x0000-0x002e] stackSize: 1, maxStackSize: 1
0x0000: pushAccessVal(accessor: <accessor>);
0x0009: logicNot(popParam: 1, offsetParam: 0);
0x000b: jmpNothing(target: 0x002e);
0x0010: jmpTrue(target: 0x0024);
0x0015: pushConstVal(value: "else");
0x001f: jmp(target: 0x002e);
0x0024: pushConstVal(value: "then");


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

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

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

