Returns `true` if the token is a raw string.
(self)
| 751 | |
| 752 | /// Returns `true` if the token is a raw string. |
| 753 | pub(crate) const fn is_raw_string(self) -> bool { |
| 754 | self.intersects(TokenFlags::RAW_STRING) |
| 755 | } |
| 756 | |
| 757 | /// Converts this type to [`AnyStringFlags`], setting the equivalent flags. |
| 758 | pub(crate) fn as_any_string_flags(self) -> AnyStringFlags { |
no outgoing calls
no test coverage detected