| 206 | } |
| 207 | |
| 208 | void FormatVisitor::pushWriter() { |
| 209 | SourceWriter* writer = new SourceWriter(0); |
| 210 | if (!writers_.empty()) { |
| 211 | writer->set_volatile(true); |
| 212 | } |
| 213 | writers_.push_back(writer); |
| 214 | } |
| 215 | |
| 216 | void FormatVisitor::pushWriterWithColumn() { |
| 217 | SourceWriter* writer = new SourceWriter(cur_columns()); |
nothing calls this directly
no test coverage detected