Add code for invoke_lua_call

This commit is contained in:
2024-08-28 19:40:23 -04:00
parent d1efa7f528
commit 811df62bc6
4 changed files with 61 additions and 0 deletions

View File

@@ -31,6 +31,8 @@ eng::string Invocation::debug_string() const {
oss << "inv[";
switch (kind_) {
case KIND_INVALID: oss << "invalid"; break;
case KIND_ENGIO: oss << "engio"; break;
case KIND_LUA_CALL: oss << "lua_call"; break;
case KIND_LUA: oss << "lua"; break;
case KIND_FLUSH_PRINTS: oss << "flush_prints"; break;
case KIND_TICK: oss << "tick"; break;