(&self)
| 73 | /// Returns the current position of the parser considering the offset. |
| 74 | #[inline] |
| 75 | fn position(&self) -> TextSize { |
| 76 | self.compute_position(self.cursor) |
| 77 | } |
| 78 | |
| 79 | /// Computes the position of the cursor considering the offset. |
| 80 | #[inline] |
no test coverage detected