| 2114 | } |
| 2115 | |
| 2116 | void krom_sys_command(const FunctionCallbackInfo<Value> &args) { |
| 2117 | HandleScope scope(args.GetIsolate()); |
| 2118 | String::Utf8Value utf8_cmd(isolate, args[0]); |
| 2119 | int result = sys_command(*utf8_cmd); |
| 2120 | args.GetReturnValue().Set(Int32::New(isolate, result)); |
| 2121 | } |
| 2122 | |
| 2123 | void krom_save_path(const FunctionCallbackInfo<Value> &args) { |
| 2124 | HandleScope scope(args.GetIsolate()); |
nothing calls this directly
no test coverage detected