| 56 | s.schema = this; |
| 57 | } |
| 58 | virtual void register_operator(op& o) { |
| 59 | operators.push_back(o); |
| 60 | typekey t(o.left, o.right, o.result); |
| 61 | index.insert(std::pair<typekey,op>(t,o)); |
| 62 | } |
| 63 | virtual void register_routine(routine& r) { |
| 64 | routines.push_back(r); |
| 65 | } |
nothing calls this directly
no outgoing calls
no test coverage detected