| 506 | |
| 507 | |
| 508 | bool |
| 509 | StyledWriter::hasCommentForValue( const Value &value ) |
| 510 | { |
| 511 | return value.hasComment( commentBefore ) |
| 512 | || value.hasComment( commentAfterOnSameLine ) |
| 513 | || value.hasComment( commentAfter ); |
| 514 | } |
| 515 | |
| 516 | |
| 517 | std::string |
nothing calls this directly
no test coverage detected