MCPcopy Create free account
hub / github.com/PlutoLang/Pluto / luaO_pushfstring

Function luaO_pushfstring

src/lobject.cpp:702–711  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

700
701
702const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
703 const char *msg;
704 va_list argp;
705 va_start(argp, fmt);
706 msg = luaO_pushvfstring(L, fmt, argp);
707 va_end(argp);
708 if (msg == NULL) /* error? */
709 luaD_throw(L, LUA_ERRMEM);
710 return msg;
711}
712
713/* }================================================================== */
714

Callers 12

http_requestFunction · 0.85
errorFunction · 0.85
numerrorFunction · 0.85
formatvarinfoFunction · 0.85
luaG_addinfoFunction · 0.85
checkmodeFunction · 0.85
luaX_token2strFunction · 0.85
luaX_token2str_noqFunction · 0.85
read_long_stringFunction · 0.85
luaB_dumpvar_implFunction · 0.85
errorlimitFunction · 0.85
jumpscopeerrorFunction · 0.85

Calls 2

luaO_pushvfstringFunction · 0.85
luaD_throwFunction · 0.85

Tested by

no test coverage detected