(self)
| 1152 | } |
| 1153 | |
| 1154 | pub fn into_source(self) -> String { |
| 1155 | match self { |
| 1156 | ExprOrSource::Expr(e) => e.to_string(), |
| 1157 | ExprOrSource::Source(SourceExpr { text, .. }) => text, |
| 1158 | } |
| 1159 | } |
| 1160 | |
| 1161 | fn wrap_in_parenthesis(self) -> Self { |
| 1162 | match self { |
no outgoing calls
no test coverage detected