| 33 | void NodeBuilder::OnDocumentEnd() {} |
| 34 | |
| 35 | void NodeBuilder::OnNull(const Mark& mark, anchor_t anchor) { |
| 36 | detail::node& node = Push(mark, anchor); |
| 37 | node.set_null(); |
| 38 | Pop(); |
| 39 | } |
| 40 | |
| 41 | void NodeBuilder::OnAlias(const Mark& /* mark */, anchor_t anchor) { |
| 42 | detail::node& node = *m_anchors[anchor]; |
no test coverage detected