MCPcopy Create free account
hub / github.com/christophhart/HISE / prepare

Method prepare

hi_scripting/scripting/scriptnode/api/StaticNodeWrappers.cpp:78–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78void InterpretedNode::prepare(PrepareSpecs specs)
79{
80 auto& exceptionHandler = getRootNetwork()->getExceptionHandler();
81
82 exceptionHandler.removeError(this);
83
84 try
85 {
86 this->obj.prepare(specs);
87 }
88 catch (Error& s)
89 {
90 exceptionHandler.addError(this, s);
91 }
92
93 NodeBase::prepare(specs);
94}
95
96void InterpretedNode::processFrame(NodeBase::FrameType& data)
97{

Callers

nothing calls this directly

Calls 3

removeErrorMethod · 0.80
prepareFunction · 0.50
addErrorMethod · 0.45

Tested by

no test coverage detected