(self, offset: SourceOffset)
| 1043 | /// A convenience function for `Cursor::new(offset, token)`. |
| 1044 | #[inline(always)] |
| 1045 | pub fn with_cursor(self, offset: SourceOffset) -> Cursor { |
| 1046 | Cursor::new(offset, self) |
| 1047 | } |
| 1048 | |
| 1049 | /// If the [Kind] is [Kind::Hash] then this token may have had the opportunity to be parsed as a `<hex-value>` (e.g. |
| 1050 | /// `#fff`). When this happens the character data is parsed during tokenization into a u32 which stores the |
no outgoing calls