MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / luaL_pushresult

Function luaL_pushresult

third-party/lua-5.2.4/src/lauxlib.c:471–476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

469
470
471LUALIB_API void luaL_pushresult (luaL_Buffer *B) {
472 lua_State *L = B->L;
473 lua_pushlstring(L, B->b, B->n);
474 if (buffonstack(B))
475 lua_remove(L, -2); /* remove old buffer */
476}
477
478
479LUALIB_API void luaL_pushresultsize (luaL_Buffer *B, size_t sz) {

Callers 12

str_dumpFunction · 0.70
str_gsubFunction · 0.70
str_formatFunction · 0.70
luaL_pushresultsizeFunction · 0.70
luaL_gsubFunction · 0.70
tconcatFunction · 0.70
searchpathFunction · 0.70
findloaderFunction · 0.70
os_dateFunction · 0.70
read_lineFunction · 0.70
read_allFunction · 0.70
read_charsFunction · 0.70

Calls 2

lua_pushlstringFunction · 0.70
lua_removeFunction · 0.70

Tested by

no test coverage detected