| 45 | } |
| 46 | |
| 47 | void NodeBuilder::OnScalar(const Mark& mark, const std::string& tag, |
| 48 | anchor_t anchor, const std::string& value) { |
| 49 | detail::node& node = Push(mark, anchor); |
| 50 | node.set_scalar(value); |
| 51 | node.set_tag(tag); |
| 52 | Pop(); |
| 53 | } |
| 54 | |
| 55 | void NodeBuilder::OnSequenceStart(const Mark& mark, const std::string& tag, |
| 56 | anchor_t anchor, EmitterStyle::value style) { |
no test coverage detected