| 339 | FutureRuleImpl& output_; |
| 340 | |
| 341 | void throwError(const char* msg) { |
| 342 | std::stringstream buffer; |
| 343 | buffer << msg << " at " << position_ << " in '" << ruleString_ << "'"; |
| 344 | throw TimezoneError(buffer.str()); |
| 345 | } |
| 346 | |
| 347 | /** |
| 348 | * Parse the names of the form: |
nothing calls this directly
no test coverage detected