(argCount, resultCount int)
| 308 | } |
| 309 | |
| 310 | func (l *State) checkResults(argCount, resultCount int) { |
| 311 | if apiCheck && resultCount != MultipleReturns && l.callInfo.top-l.top < resultCount-argCount { |
| 312 | panic("results from function overflow current stack size") |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | // Context is called by a continuation function to retrieve the status of the |
| 317 | // thread and context information. When called in the origin function, it |
no outgoing calls
no test coverage detected