| 64 | static void ts_lua_inject_hook_variables(lua_State *L); |
| 65 | |
| 66 | void |
| 67 | ts_lua_inject_hook_api(lua_State *L) |
| 68 | { |
| 69 | lua_pushcfunction(L, ts_lua_add_hook); |
| 70 | lua_setfield(L, -2, "hook"); |
| 71 | |
| 72 | ts_lua_inject_hook_variables(L); |
| 73 | } |
| 74 | |
| 75 | static void |
| 76 | ts_lua_inject_hook_variables(lua_State *L) |
no test coverage detected