| 3489 | } |
| 3490 | |
| 3491 | bool StyledWriter::hasCommentForValue(const Value &value) { |
| 3492 | return value.hasComment(commentBefore) || |
| 3493 | value.hasComment(commentAfterOnSameLine) || |
| 3494 | value.hasComment(commentAfter); |
| 3495 | } |
| 3496 | |
| 3497 | std::string StyledWriter::normalizeEOL(const std::string &text) { |
| 3498 | std::string normalized; |
nothing calls this directly
no test coverage detected