| 481 | |
| 482 | |
| 483 | void |
| 484 | StyledWriter::writeCommentBeforeValue( const Value &root ) |
| 485 | { |
| 486 | if ( !root.hasComment( commentBefore ) ) |
| 487 | return; |
| 488 | document_ += normalizeEOL( root.getComment( commentBefore ) ); |
| 489 | document_ += "\n"; |
| 490 | } |
| 491 | |
| 492 | |
| 493 | void |
nothing calls this directly
no test coverage detected