* }}} */ * package local methods {{{ */
(L *LState)
| 551 | /* package local methods {{{ */ |
| 552 | |
| 553 | func panicWithTraceback(L *LState) { |
| 554 | err := newApiError(ApiErrorRun, L.Get(-1)) |
| 555 | err.StackTrace = L.stackTrace(0) |
| 556 | panic(err) |
| 557 | } |
| 558 | |
| 559 | func panicWithoutTraceback(L *LState) { |
| 560 | err := newApiError(ApiErrorRun, L.Get(-1)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…