| 5103 | } |
| 5104 | |
| 5105 | auto isBoundary(size_t at) const -> bool { |
| 5106 | assert(at > 0); |
| 5107 | assert(at <= line().size()); |
| 5108 | |
| 5109 | return at == line().size() || (isWhitespace(line()[at]) && !isWhitespace(line()[at - 1])) || |
| 5110 | isBreakableBefore(line()[at]) || isBreakableAfter(line()[at - 1]); |
| 5111 | } |
| 5112 | |
| 5113 | void calcLength() { |
| 5114 | assert(m_stringIndex < m_column.m_strings.size()); |
nothing calls this directly
no test coverage detected