| 1162 | /// [JoinedStr]: https://docs.python.org/3/library/ast.html#ast.JoinedStr |
| 1163 | #[derive(Clone, Debug, PartialEq, Eq, Hash)] |
| 1164 | pub struct FStringExpr { |
| 1165 | pub range: TextRange, |
| 1166 | pub value: FStringValue, |
| 1167 | } |
| 1168 | |
| 1169 | impl From<FStringExpr> for Expr { |
| 1170 | fn from(payload: FStringExpr) -> Self { |