| 2385 | |
| 2386 | |
| 2387 | var ScriptingApi::Engine::createDspNetwork(String id) |
| 2388 | { |
| 2389 | if (auto holder = dynamic_cast<scriptnode::DspNetwork::Holder*>(getScriptProcessor())) |
| 2390 | { |
| 2391 | return holder->getOrCreate(id); |
| 2392 | } |
| 2393 | |
| 2394 | reportScriptError("Not available on this script processor"); |
| 2395 | RETURN_IF_NO_THROW({}); |
| 2396 | } |
| 2397 | |
| 2398 | var ScriptingApi::Engine::createExpansionHandler() |
| 2399 | { |
nothing calls this directly
no test coverage detected