(c: u8)
| 1569 | /// Check if a character is a valid boundary (not part of an identifier). |
| 1570 | #[inline] |
| 1571 | fn is_boundary_char(c: u8) -> bool { |
| 1572 | !c.is_ascii_alphanumeric() && c != b'_' && c != b':' && c != b'$' |
| 1573 | } |
| 1574 | |
| 1575 | /// Find the next single-quote or backslash in a slice, returning the |
| 1576 | /// offset and the byte found. Uses `memchr` for SIMD acceleration. |
no outgoing calls
no test coverage detected