(self, func_id)
| 802 | self.lastException = None |
| 803 | |
| 804 | def func(self, func_id): |
| 805 | self.detachedFrames.setdefault(func_id, []) |
| 806 | self.detachedFramesCount.setdefault(func_id, 0) |
| 807 | frames = self.detachedFrames[func_id] |
| 808 | frameno = self.detachedFramesCount[func_id] |
| 809 | self.detachedFramesCount[func_id] = frameno + 1 |
| 810 | return FunctionFrame(self, frameno, func_id) |
| 811 | |
| 812 | def logExpressionResultAndStartFrame(self, nodetype, childset, result): |
| 813 | self.startFrame(nodetype, childset) |
nothing calls this directly
no test coverage detected