Returns `true` if the current f-string is a raw f-string.
(&self)
| 68 | |
| 69 | /// Returns `true` if the current f-string is a raw f-string. |
| 70 | pub(crate) fn is_raw_string(&self) -> bool { |
| 71 | self.flags.is_raw_string() |
| 72 | } |
| 73 | |
| 74 | /// Returns `true` if the current f-string is a triple-quoted f-string. |
| 75 | pub(crate) fn is_triple_quoted(&self) -> bool { |
no outgoing calls
no test coverage detected