| 568 | } |
| 569 | |
| 570 | void |
| 571 | ts_lua_set_instance_conf(lua_State *L, ts_lua_instance_conf *conf) |
| 572 | { |
| 573 | lua_pushliteral(L, "__ts_instance_conf"); |
| 574 | lua_pushlightuserdata(L, conf); |
| 575 | lua_rawset(L, LUA_GLOBALSINDEX); |
| 576 | } |
| 577 | |
| 578 | ts_lua_instance_conf * |
| 579 | ts_lua_get_instance_conf(lua_State *L) |
no outgoing calls
no test coverage detected