(self)
| 1646 | dispatch[INST[0]] = load_inst |
| 1647 | |
| 1648 | def load_obj(self): |
| 1649 | # Stack is ... markobject classobject arg1 arg2 ... |
| 1650 | args = self.pop_mark() |
| 1651 | cls = args.pop(0) |
| 1652 | self._instantiate(cls, args) |
| 1653 | dispatch[OBJ[0]] = load_obj |
| 1654 | |
| 1655 | def load_newobj(self): |
nothing calls this directly
no test coverage detected