| 241 | } |
| 242 | |
| 243 | void parseIdentifier(std::string &identifier) |
| 244 | { |
| 245 | skipWhitespace(); |
| 246 | std::size_t start = index_; |
| 247 | while (index_ < input_.size() && isIdentifierChar(input_[index_])) |
| 248 | { |
| 249 | ++index_; |
| 250 | } |
| 251 | identifier = input_.substr(start, index_ - start); |
| 252 | } |
| 253 | |
| 254 | bool tryParseInt(int &value) |
| 255 | { |
nothing calls this directly
no test coverage detected