| 138 | return thinkyoung::lua::lib::run_compiled_bytestream(_L, stream_addr); |
| 139 | } |
| 140 | void GluaStateScope::add_global_c_function(const char *name, lua_CFunction func) |
| 141 | { |
| 142 | thinkyoung::lua::lib::add_global_c_function(_L, name, func); |
| 143 | } |
| 144 | void GluaStateScope::add_global_string_variable(const char *name, const char *str) |
| 145 | { |
| 146 | thinkyoung::lua::lib::add_global_string_variable(_L, name, str); |
nothing calls this directly
no test coverage detected