| 1220 | |
| 1221 | #[derive(Debug, Clone, Copy)] |
| 1222 | pub enum TemplateExpressionKind<'cx> { |
| 1223 | NoSubstitutionTemplateLit(&'cx NoSubstitutionTemplateLit), |
| 1224 | TemplateExpr(&'cx TemplateExpr<'cx>), |
| 1225 | } |
| 1226 | |
| 1227 | impl TemplateExpressionKind<'_> { |
| 1228 | pub fn span(&self) -> Span { |
| 1229 | match self { |
no outgoing calls
no test coverage detected