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

    if (s1 ?: s2) 
    then "then" 
    else "else" 


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


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

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

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

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

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

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

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

