MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / luaD_protectedparser

Function luaD_protectedparser

Source/Misc/lua/src/lua.c:5654–5662  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5652
5653
5654int luaD_protectedparser (lua_State *L, ZIO *z, const char *name) {
5655struct SParser p;
5656int status;
5657p.z = z; p.name = name;
5658luaZ_initbuffer(L, &p.buff);
5659status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc);
5660luaZ_freebuffer(L, &p.buff);
5661return status;
5662}
5663
5664
5665/*

Callers 1

lua_loadFunction · 0.85

Calls 1

luaD_pcallFunction · 0.85

Tested by

no test coverage detected