(self)
| 1502 | dispatch[INST[0]] = load_inst |
| 1503 | |
| 1504 | def load_obj(self): |
| 1505 | # Stack is ... markobject classobject arg1 arg2 ... |
| 1506 | args = self.pop_mark() |
| 1507 | cls = args.pop(0) |
| 1508 | self._instantiate(cls, args) |
| 1509 | dispatch[OBJ[0]] = load_obj |
| 1510 | |
| 1511 | def load_newobj(self): |
nothing calls this directly
no test coverage detected