| 165 | |
| 166 | |
| 167 | static void info_tailcall (lua_Debug *ar) { |
| 168 | ar->name = ar->namewhat = ""; |
| 169 | ar->what = "tail"; |
| 170 | ar->lastlinedefined = ar->linedefined = ar->currentline = -1; |
| 171 | ar->source = "=(tail call)"; |
| 172 | luaO_chunkid(ar->short_src, ar->source, LUA_IDSIZE); |
| 173 | ar->nups = 0; |
| 174 | } |
| 175 | |
| 176 | |
| 177 | static void collectvalidlines (lua_State *L, Closure *f) { |
no test coverage detected