| 446 | } |
| 447 | |
| 448 | ScriptNetworkTest::CHandler::RuntimeFunction::RuntimeFunction(DspNetwork* n, const var& f_, int timestamp_) : |
| 449 | f(n->getScriptProcessor(), nullptr, f_, 0), |
| 450 | timestamp(timestamp_) |
| 451 | { |
| 452 | f.incRefCount(); |
| 453 | f.setThisObject(n); |
| 454 | } |
| 455 | |
| 456 | void ScriptNetworkTest::CHandler::addRuntimeFunction(const var& f, int timestamp) |
| 457 | { |
nothing calls this directly
no test coverage detected