| 142 | } |
| 143 | |
| 144 | Scripting::RunResult Scripting::runScript(std::string_view script, Context& context, bool captureOutput) |
| 145 | { |
| 146 | return Falcor::runScript(script, context.mGlobals, captureOutput); |
| 147 | } |
| 148 | |
| 149 | Scripting::RunResult Scripting::runScriptFromFile(const std::filesystem::path& path, Context& context, bool captureOutput) |
| 150 | { |
nothing calls this directly
no test coverage detected