| 643 | } |
| 644 | |
| 645 | bool StyledWriter::hasCommentForValue(const Value& value) { |
| 646 | return value.hasComment(commentBefore) || |
| 647 | value.hasComment(commentAfterOnSameLine) || |
| 648 | value.hasComment(commentAfter); |
| 649 | } |
| 650 | |
| 651 | // Class StyledStreamWriter |
| 652 | // ////////////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected