| 621 | } |
| 622 | |
| 623 | String CodeDocument::getLine (const int lineIndex) const noexcept |
| 624 | { |
| 625 | if (auto* line = lines[lineIndex]) |
| 626 | return line->line; |
| 627 | |
| 628 | return {}; |
| 629 | } |
| 630 | |
| 631 | int CodeDocument::getMaximumLineLength() noexcept |
| 632 | { |
no outgoing calls
no test coverage detected