ASSIGN_LEFT / ASSIGN_RIGHT (r.ts:37-38).
(op: &str)
| 39 | |
| 40 | /// ASSIGN_LEFT / ASSIGN_RIGHT (r.ts:37-38). |
| 41 | fn is_assign_left(op: &str) -> bool { |
| 42 | matches!(op, "<-" | "<<-" | "=") |
| 43 | } |
| 44 | fn is_assign_right(op: &str) -> bool { |
| 45 | matches!(op, "->" | "->>") |
| 46 | } |
no outgoing calls
no test coverage detected