| 4673 | |
| 4674 | |
| 4675 | static void info_tailcall (lua_Debug *ar) { |
| 4676 | ar->name = ar->namewhat = ""; |
| 4677 | ar->what = "tail"; |
| 4678 | ar->lastlinedefined = ar->linedefined = ar->currentline = -1; |
| 4679 | ar->source = "=(tail call)"; |
| 4680 | luaO_chunkid(ar->short_src, ar->source, LUA_IDSIZE); |
| 4681 | ar->nups = 0; |
| 4682 | } |
| 4683 | |
| 4684 | |
| 4685 | static void collectvalidlines (lua_State *L, Closure *f) { |
no test coverage detected