Returns a factory for nodes that represent the given iterator.
| 774 | private: |
| 775 | // Returns a factory for nodes that represent the given iterator. |
| 776 | static model::Node::Factory MakeNodeFactory(IteratorContext* ctx, |
| 777 | IteratorBase* iterator) { |
| 778 | return [ctx, iterator](model::Node::Args args) { |
| 779 | return iterator->CreateNode(ctx, std::move(args)); |
| 780 | }; |
| 781 | } |
| 782 | |
| 783 | const string type_string_; |
| 784 | const string node_name_; |
nothing calls this directly
no test coverage detected