(&mut self, func: &Function<Aug>)
| 2972 | |
| 2973 | impl Visit<'_, Aug> for ExprContainsTemporalVisitor { |
| 2974 | fn visit_function(&mut self, func: &Function<Aug>) { |
| 2975 | self.contains_temporal |= func.name.full_item_name().item == MZ_NOW_NAME; |
| 2976 | visit_function(self, func); |
| 2977 | } |
| 2978 | } |
| 2979 | |
| 2980 | struct MzNowPurifierVisitor { |
nothing calls this directly
no test coverage detected