(&self)
| 119 | /// Returns the current position of the parser considering the offset. |
| 120 | #[inline] |
| 121 | fn position(&self) -> TextSize { |
| 122 | self.compute_position(self.cursor) |
| 123 | } |
| 124 | |
| 125 | /// Computes the position of the cursor considering the offset. |
| 126 | #[inline] |
no test coverage detected