| 214 | } |
| 215 | |
| 216 | void FormatVisitor::pushWriterWithColumn() { |
| 217 | SourceWriter* writer = new SourceWriter(cur_columns()); |
| 218 | if (!writers_.empty()) { |
| 219 | writer->set_volatile(true); |
| 220 | } |
| 221 | writers_.push_back(writer); |
| 222 | } |
| 223 | |
| 224 | void FormatVisitor::popWriter() { |
| 225 | SourceWriter* writer = writers_.back(); |
nothing calls this directly
no test coverage detected