(self, span: Span)
| 84 | |
| 85 | impl ExprKind { |
| 86 | pub fn into_expr(self, span: Span) -> Expr { |
| 87 | Expr { |
| 88 | span: Some(span), |
| 89 | kind: self, |
| 90 | alias: None, |
| 91 | doc_comment: None, |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | #[derive(Debug, EnumAsInner, PartialEq, Clone, Serialize, Deserialize, JsonSchema)] |
no outgoing calls
no test coverage detected