(kind: &str)
| 280 | } |
| 281 | |
| 282 | fn is_call_kind(kind: &str) -> bool { |
| 283 | const MARKERS: [&str; 4] = ["call", "invocation", "macro", "apply"]; |
| 284 | MARKERS.iter().any(|m| kind.contains(m)) |
| 285 | } |
| 286 | |
| 287 | /// Return the leftmost identifier-like child of a call node, treating |
| 288 | /// `field_expression` / `member_expression` as a chain (returns the |
no test coverage detected