| 76 | } |
| 77 | |
| 78 | void 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 | |
| 96 | void InterpretedNode::processFrame(NodeBase::FrameType& data) |
| 97 | { |
nothing calls this directly
no test coverage detected