(self, nodetype, childset, result)
| 810 | return FunctionFrame(self, frameno, func_id) |
| 811 | |
| 812 | def logExpressionResultAndStartFrame(self, nodetype, childset, result): |
| 813 | self.startFrame(nodetype, childset) |
| 814 | self.logExpressionResult(None, {}, result) |
| 815 | return result |
| 816 | |
| 817 | def logExpressionResultAndEndFrames(self, nodetype, frameType, result): |
| 818 | self.logExpressionResult(nodetype, {}, result) |
nothing calls this directly
no test coverage detected