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

Function luaV_tostring

Source/Misc/lua/src/lua.c:14880–14890  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14878
14879
14880int luaV_tostring (lua_State *L, StkId obj) {
14881if (!ttisnumber(obj))
14882return 0;
14883else {
14884char s[LUAI_MAXNUMBER2STR];
14885lua_Number n = nvalue(obj);
14886lua_number2str(s, n);
14887setsvalue2s(L, obj, luaS_new(L, s));
14888return 1;
14889}
14890}
14891
14892
14893static void traceexec (lua_State *L, const Instruction *pc) {

Callers 2

lua_tolstringFunction · 0.85
lua_objlenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected