(L *LState)
| 657 | } |
| 658 | |
| 659 | func panicWithoutTraceback(L *LState) { |
| 660 | err := newApiError(ApiErrorRun, L.Get(-1)) |
| 661 | panic(err) |
| 662 | } |
| 663 | |
| 664 | func newLState(options Options) *LState { |
| 665 | al := newAllocator(32) |
nothing calls this directly
no test coverage detected
searching dependent graphs…