| 309 | |
| 310 | |
| 311 | static void f_newext (lua_State *L, void *ud) { |
| 312 | struct NewExt *ne = cast(struct NewExt *, ud); |
| 313 | size_t size = luaS_sizelngstr(0, ne->kind); |
| 314 | ne->ts = createstrobj(L, size, LUA_VLNGSTR, G(L)->seed); |
| 315 | } |
| 316 | |
| 317 | |
| 318 | TString *luaS_newextlstr (lua_State *L, |
no test coverage detected