(op: &str)
| 42 | matches!(op, "<-" | "<<-" | "=") |
| 43 | } |
| 44 | fn is_assign_right(op: &str) -> bool { |
| 45 | matches!(op, "->" | "->>") |
| 46 | } |
| 47 | |
| 48 | /// IMPORT_FNS (r.ts:39) — `source` is checked alongside (r.ts:189). |
| 49 | fn is_import_fn(name: &str) -> bool { |
no outgoing calls
no test coverage detected