| 1208 | #[derive(Clone, Debug, PartialEq)] |
| 1209 | #[cfg_attr(feature = "get-size", derive(get_size2::GetSize))] |
| 1210 | pub struct FString { |
| 1211 | pub range: TextRange, |
| 1212 | pub node_index: AtomicNodeIndex, |
| 1213 | pub elements: InterpolatedStringElements, |
| 1214 | pub flags: FStringFlags, |
| 1215 | } |
| 1216 | |
| 1217 | impl From<FString> for Expr { |
| 1218 | fn from(payload: FString) -> Self { |
no outgoing calls
no test coverage detected