def IfStmt_Case_3() -> bool: box = BoxMachinePlus() if box.query(DStr("ident")) == "Box": v = core.DInt(1) return True
def IfStmt_Case_2() -> bool: box = BoxMachinePlus() v = 1 if box.query(DStr("ident")) == "Box": v = 2 else: v = 3 return True
def AssignStmts_Case_1() -> bool: box = BoxMachinePlus() info = box.query(DStr("things")) box.op(info) return True
def CallExpression_Case_2() -> bool: box = BoxMachinePlus() box.op(DStr("thing")) return True
def CallExpression_Case_1() -> bool: box = BoxMachinePlus() box.op(box.query(DStr("things"))) return True
def BinEqual_Case_3() -> bool: box = BoxMachinePlus() box.query(DStr("A")) == "A" return True