| 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 | { |
nothing calls this directly
no test coverage detected