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

    if (s1 || s2) 
    then "then" 
    else "else" 


-- COMPILED EXPRESSION:
[0x0000-0x004e] stackSize: 1, maxStackSize: 1
0x0000: pushAccessVal(accessor: <accessor>);
0x0009: jmpNothing(target: 0x002b);
0x000e: jmpTrue(target: 0x0021);
0x0013: pushAccessVal(accessor: <accessor>);
0x001c: jmp(target: 0x002b);
0x0021: pushConstVal(value: true);
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: Nothing

-- 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: "else"

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

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

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

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

