| 105 | } |
| 106 | |
| 107 | std::string cmJSONState::key() |
| 108 | { |
| 109 | if (!this->parseStack.empty()) { |
| 110 | return this->parseStack.back().first; |
| 111 | } |
| 112 | return ""; |
| 113 | } |
| 114 | |
| 115 | std::string cmJSONState::key_after(std::string const& k) |
| 116 | { |
no test coverage detected