(expression: &Expression)
| 184 | // ─── helpers ─── |
| 185 | |
| 186 | fn expr_string(expression: &Expression) -> Option<String> { |
| 187 | if let Expression::StringLiteral(StringLiteral { value, .. }) = expression { |
| 188 | Some(value.to_string()) |
| 189 | } else { |
| 190 | None |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | // ─── routes ─── |
| 195 |
nothing calls this directly
no outgoing calls
no test coverage detected