MCPcopy Create free account
hub / github.com/SplootCode/splootcode / func

Method func

python/executor.py:804–810  ·  view source on GitHub ↗
(self, func_id)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

FunctionFrameClass · 0.85

Tested by

no test coverage detected