HomeSort by: relevance | last modified time | path
    Searched defs:searchers (Results 1 - 1 of 1) sorted by relevancy

  /src/external/mit/lua/dist/src/
loadlib.c 629 /* push 'package.searchers' to index 3 in the stack */
630 if (l_unlikely(lua_getfield(L, lua_upvalueindex(1), "searchers")
632 luaL_error(L, "'package.searchers' must be a table");
634 /* iterate over available searchers to find a loader */
637 if (l_unlikely(lua_rawgeti(L, 3, i) == LUA_TNIL)) { /* no more searchers? */
700 {"searchers", NULL},
713 static const lua_CFunction searchers[] = { local
721 /* create 'searchers' table */
722 lua_createtable(L, sizeof(searchers)/sizeof(searchers[0]) - 1, 0)
    [all...]

Completed in 18 milliseconds