(self)
| 1615 | dispatch[INST[0]] = load_inst |
| 1616 | |
| 1617 | def load_obj(self): |
| 1618 | # Stack is ... markobject classobject arg1 arg2 ... |
| 1619 | args = self.pop_mark() |
| 1620 | cls = args.pop(0) |
| 1621 | self._instantiate(cls, args) |
| 1622 | dispatch[OBJ[0]] = load_obj |
| 1623 | |
| 1624 | def load_newobj(self): |
nothing calls this directly
no test coverage detected