MCPcopy Create free account
hub / github.com/defold/defold / dm_luaL_error_asan

Function dm_luaL_error_asan

engine/lua/src/lua_asan.cpp:37–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35}
36
37extern "C" int dm_luaL_error_asan(lua_State* L, const char* fmt, ...)
38{
39 va_list argp;
40 va_start(argp, fmt);
41 luaL_where(L, 1);
42 lua_pushvfstring(L, fmt, argp);
43 va_end(argp);
44 lua_concat(L, 2);
45 return dm_lua_error_asan(L);
46}
47#endif

Callers

nothing calls this directly

Calls 4

luaL_whereFunction · 0.85
lua_pushvfstringFunction · 0.85
lua_concatFunction · 0.85
dm_lua_error_asanFunction · 0.70

Tested by

no test coverage detected