| 283 | |
| 284 | |
| 285 | static int luaB_loadstring (lua_State *L) { |
| 286 | size_t l; |
| 287 | const char *s = luaL_checklstring(L, 1, &l); |
| 288 | const char *chunkname = luaL_optstring(L, 2, s); |
| 289 | return load_aux(L, luaL_loadbuffer(L, s, l, chunkname)); |
| 290 | } |
| 291 | |
| 292 | |
| 293 | static int luaB_loadfile (lua_State *L) { |
nothing calls this directly
no test coverage detected