| 290 | } |
| 291 | |
| 292 | void FutureRuleImpl::print(std::ostream& out) const { |
| 293 | if (isDefined()) { |
| 294 | out << " Future rule: " << ruleString_ << "\n"; |
| 295 | out << " standard " << standard_.toString() << "\n"; |
| 296 | if (hasDst_) { |
| 297 | out << " dst " << dst_.toString() << "\n"; |
| 298 | out << " start " << start_.toString() << "\n"; |
| 299 | out << " end " << end_.toString() << "\n"; |
| 300 | } |
| 301 | } |
| 302 | } |
| 303 | |
| 304 | /** |
| 305 | * A parser for the future rule strings. |