| 111 | } |
| 112 | |
| 113 | ~Parser() { |
| 114 | if (primary_loaded_) { |
| 115 | yaml_document_delete(&primary_document_); |
| 116 | } |
| 117 | if (initialized_) { |
| 118 | yaml_parser_delete(&parser_); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | yaml_document_t & load_primary() { |
| 123 | load_document(primary_document_, primary_loaded_); |
nothing calls this directly
no test coverage detected