| 593 | } |
| 594 | |
| 595 | static int |
| 596 | ts_lua_get_install_dir(lua_State *L) |
| 597 | { |
| 598 | const char *s = TSInstallDirGet(); |
| 599 | lua_pushstring(L, s); |
| 600 | return 1; |
| 601 | } |
| 602 | |
| 603 | static int |
| 604 | ts_lua_get_config_dir(lua_State *L) |
nothing calls this directly
no test coverage detected