| 134 | } |
| 135 | |
| 136 | void YamlHelper::GetMapStartEvent(void) |
| 137 | { |
| 138 | GetNextEvent(); |
| 139 | |
| 140 | if (m_newEvent.type != YAML_MAPPING_START_EVENT) |
| 141 | { |
| 142 | //printf("Unexpected yaml event (%d)\n", m_newEvent.type); |
| 143 | throw std::runtime_error("Unexpected yaml event"); |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | int YamlHelper::ParseMap(MapYaml& mapYaml) |
| 148 | { |
no outgoing calls
no test coverage detected