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

Function Hash_concat

engine/script/src/script_hash.cpp:379–389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

377 }
378
379 static int Hash_concat(lua_State *L)
380 {
381 // string .. hash
382 // hash .. string
383 // hash .. hash
384 PushStringHelper(L, 1);
385 PushStringHelper(L, 2);
386
387 lua_concat(L, 2);
388 return 1;
389 }
390
391 static const luaL_reg ScriptHash_methods[] =
392 {

Callers

nothing calls this directly

Calls 2

PushStringHelperFunction · 0.85
lua_concatFunction · 0.85

Tested by

no test coverage detected