| 320 | } |
| 321 | |
| 322 | bool Document::IsLineEndPosition(int position) const { |
| 323 | return LineEnd(LineFromPosition(position)) == position; |
| 324 | } |
| 325 | |
| 326 | bool Document::IsPositionInLineEnd(int position) const { |
| 327 | return position >= LineEnd(LineFromPosition(position)); |
no test coverage detected