* }}} */ * package local methods {{{ */
(L *LState)
| 651 | /* package local methods {{{ */ |
| 652 | |
| 653 | func panicWithTraceback(L *LState) { |
| 654 | err := newApiError(ApiErrorRun, L.Get(-1)) |
| 655 | err.StackTrace = L.stackTrace(0) |
| 656 | panic(err) |
| 657 | } |
| 658 | |
| 659 | func panicWithoutTraceback(L *LState) { |
| 660 | err := newApiError(ApiErrorRun, L.Get(-1)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…