| 207 | /// Node surrounded in double quotes (ex. `"my string"`). |
| 208 | #[derive(Debug, PartialEq, Clone)] |
| 209 | pub struct StringLit<'a> { |
| 210 | pub range: Range, |
| 211 | pub value: Cow<'a, str>, |
| 212 | } |
| 213 | |
| 214 | /// A string that's not in quotes. |
| 215 | /// Usually the appearance of this would be a parsing error. |
no outgoing calls
no test coverage detected
searching dependent graphs…