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

Function luaO_pushfstring

third-party/lua-5.5.0/src/lobject.c:662–671  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

660
661
662const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
663 const char *msg;
664 va_list argp;
665 va_start(argp, fmt);
666 msg = luaO_pushvfstring(L, fmt, argp);
667 va_end(argp);
668 if (msg == NULL) /* error? */
669 luaD_throw(L, LUA_ERRMEM);
670 return msg;
671}
672
673/* }================================================================== */
674

Callers 12

luaX_token2strFunction · 0.70
txtTokenFunction · 0.70
lexerrorFunction · 0.70
read_long_stringFunction · 0.70
errorFunction · 0.70
numerrorFunction · 0.70
error_expectedFunction · 0.70
errorlimitFunction · 0.70
check_matchFunction · 0.70
formatvarinfoFunction · 0.70
luaG_addinfoFunction · 0.70
checkmodeFunction · 0.70

Calls 2

luaO_pushvfstringFunction · 0.70
luaD_throwFunction · 0.70

Tested by

no test coverage detected