| 130 | } |
| 131 | |
| 132 | bool GluaStateScope::run_compiledfile(const char *filename) |
| 133 | { |
| 134 | return thinkyoung::lua::lib::run_compiledfile(_L, filename); |
| 135 | } |
| 136 | bool GluaStateScope::run_compiled_bytestream(void *stream_addr) |
| 137 | { |
| 138 | return thinkyoung::lua::lib::run_compiled_bytestream(_L, stream_addr); |
nothing calls this directly
no test coverage detected