(&self)
| 1421 | } |
| 1422 | |
| 1423 | fn document_end_inner(&self) -> InnerPosition<'a> { |
| 1424 | let node = self.text_runs().next_back().unwrap(); |
| 1425 | InnerPosition { |
| 1426 | node, |
| 1427 | character_index: node.data().character_lengths().len(), |
| 1428 | } |
| 1429 | } |
| 1430 | |
| 1431 | pub fn document_end(&self) -> Position<'a> { |
| 1432 | Position { |
no test coverage detected