| 1314 | /// An AST node that represents a single f-string which is part of an [`FStringExpr`]. |
| 1315 | #[derive(Clone, Debug, PartialEq, Eq, Hash)] |
| 1316 | pub struct FString { |
| 1317 | pub range: TextRange, |
| 1318 | pub elements: FStringElements, |
| 1319 | pub flags: FStringFlags, |
| 1320 | } |
| 1321 | |
| 1322 | impl Ranged for FString { |
| 1323 | fn range(&self) -> TextRange { |
no outgoing calls
no test coverage detected