(self, type, childset)
| 832 | self.endFrame() |
| 833 | |
| 834 | def startFrame(self, type, childset): |
| 835 | frame = CaptureContext(type, childset) |
| 836 | self.stack[-1].checkFrameLimit() |
| 837 | self.stack[-1].addStatementResult(frame.type, frame.blocks, []) |
| 838 | self.stack.append(frame) |
| 839 | |
| 840 | def startChildSet(self, childset): |
| 841 | self.stack[-1].startChildSet(childset) |
no test coverage detected