| 145 | |
| 146 | |
| 147 | static void addfield (lua_State *L, luaL_Buffer *b, lua_Integer i) { |
| 148 | lua_geti(L, 1, i); |
| 149 | if (l_unlikely(!lua_isstring(L, -1))) |
| 150 | luaL_error(L, "invalid value (%s) at index %I in table for 'concat'", |
| 151 | luaL_typename(L, -1), (LUAI_UACINT)i); |
| 152 | luaL_addvalue(b); |
| 153 | } |
| 154 | |
| 155 | |
| 156 | static int tconcat (lua_State *L) { |
no test coverage detected