| 53 | } |
| 54 | |
| 55 | void NodeBuilder::OnSequenceStart(const Mark& mark, const std::string& tag, |
| 56 | anchor_t anchor, EmitterStyle::value style) { |
| 57 | detail::node& node = Push(mark, anchor); |
| 58 | node.set_tag(tag); |
| 59 | node.set_type(NodeType::Sequence); |
| 60 | node.set_style(style); |
| 61 | } |
| 62 | |
| 63 | void NodeBuilder::OnSequenceEnd() { Pop(); } |
| 64 |
no test coverage detected