(self, nodetype, frameType, result)
| 815 | return result |
| 816 | |
| 817 | def logExpressionResultAndEndFrames(self, nodetype, frameType, result): |
| 818 | self.logExpressionResult(nodetype, {}, result) |
| 819 | while frameType != self.stack[-1].type: |
| 820 | self.endFrame() |
| 821 | self.endFrame() |
| 822 | return result |
| 823 | |
| 824 | def startDetachedFrame(self, type, childset, id): |
| 825 | frame = CaptureContext(type, childset) |
nothing calls this directly
no test coverage detected