(self, type, childset, id)
| 822 | return result |
| 823 | |
| 824 | def startDetachedFrame(self, type, childset, id): |
| 825 | frame = CaptureContext(type, childset) |
| 826 | self.detachedFrames[id].append(frame) |
| 827 | self.stack.append(frame) |
| 828 | |
| 829 | def endFrameType(self, type): |
| 830 | while type != self.stack[-1].type: |
no test coverage detected