(n int)
| 302 | } |
| 303 | |
| 304 | func (l *State) checkElementCount(n int) { |
| 305 | if apiCheck && n >= l.top-l.callInfo.function { |
| 306 | panic("not enough elements in the stack") |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | func (l *State) checkResults(argCount, resultCount int) { |
| 311 | if apiCheck && resultCount != MultipleReturns && l.callInfo.top-l.top < resultCount-argCount { |
no outgoing calls
no test coverage detected