diff --git a/common/space_lua/eval.ts b/common/space_lua/eval.ts index b4efd9bf..74a77029 100644 --- a/common/space_lua/eval.ts +++ b/common/space_lua/eval.ts @@ -52,7 +52,7 @@ export class LuaFunction implements ILuaFunction { constructor(readonly body: LuaFunctionBody) { } - call(...args: any[]): Promise | LuaMultiRes { + call(..._args: any[]): Promise | LuaMultiRes { throw new Error("Not yet implemented funciton call"); } } @@ -84,7 +84,7 @@ export class LuaTable { } } -function luaSet(obj: any, key: any, value: any) { +export function luaSet(obj: any, key: any, value: any) { if (obj instanceof LuaTable) { obj.set(key, value); } else {