| 275 | |
| 276 | |
| 277 | static int luaB_loadstring (lua_State *L) { |
| 278 | size_t l; |
| 279 | const char *s = luaL_checklstring(L, 1, &l); |
| 280 | const char *chunkname = luaL_optstring(L, 2, s); |
| 281 | return load_aux(L, luaL_loadbuffer(L, s, l, chunkname)); |
| 282 | } |
| 283 | |
| 284 | |
| 285 | static int luaB_loadfile (lua_State *L) { |
nothing calls this directly
no test coverage detected