| 29 | static void ts_lua_inject_log_object_destroy_api(lua_State *L); |
| 30 | |
| 31 | void |
| 32 | ts_lua_inject_log_api(lua_State *L) |
| 33 | { |
| 34 | lua_newtable(L); |
| 35 | |
| 36 | ts_lua_inject_log_object_creat_api(L); |
| 37 | ts_lua_inject_log_object_write_api(L); |
| 38 | ts_lua_inject_log_object_destroy_api(L); |
| 39 | |
| 40 | lua_setfield(L, -2, "log"); |
| 41 | } |
| 42 | |
| 43 | static void |
| 44 | ts_lua_inject_log_object_creat_api(lua_State *L) |
no test coverage detected