| 134 | } |
| 135 | |
| 136 | Boxed_Value eval(const chaiscript::detail::Dispatch_State &t_e) const final |
| 137 | { |
| 138 | try { |
| 139 | T::trace(t_e, this); |
| 140 | return eval_internal(t_e); |
| 141 | } catch (exception::eval_error &ee) { |
| 142 | ee.call_stack.push_back(*this); |
| 143 | throw; |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | std::vector<AST_Node_Impl_Ptr<T>> children; |
| 148 |
no outgoing calls