| 324 | } |
| 325 | |
| 326 | bool Document::IsPositionInLineEnd(int position) const { |
| 327 | return position >= LineEnd(LineFromPosition(position)); |
| 328 | } |
| 329 | |
| 330 | int Document::VCHomePosition(int position) const { |
| 331 | int line = LineFromPosition(position); |
no test coverage detected