(&mut self, field: &'tcx hir::FieldDef<'tcx>)
| 432 | } |
| 433 | |
| 434 | fn visit_field_def(&mut self, field: &'tcx hir::FieldDef<'tcx>) { |
| 435 | self.check_spirv_attributes(field.hir_id, Target::Field); |
| 436 | intravisit::walk_field_def(self, field); |
| 437 | } |
| 438 | |
| 439 | fn visit_arm(&mut self, arm: &'tcx hir::Arm<'tcx>) { |
| 440 | self.check_spirv_attributes(arm.hir_id, Target::Arm); |
nothing calls this directly
no test coverage detected