(node: &Expr)
| 699 | } |
| 700 | |
| 701 | fn is_valid(node: &Expr) -> bool { |
| 702 | !node.is_volatile_node() |
| 703 | && !matches!(node, Expr::Lambda(_) | Expr::LambdaVariable(_)) |
| 704 | } |
| 705 | |
| 706 | fn is_ignored(&self, node: &Expr) -> bool { |
| 707 | // MoveTowardsLeafNodes expressions (e.g. get_field) are cheap struct |
nothing calls this directly
no test coverage detected