(&mut self, param: &'tcx hir::Param<'tcx>)
| 477 | } |
| 478 | |
| 479 | fn visit_param(&mut self, param: &'tcx hir::Param<'tcx>) { |
| 480 | self.check_spirv_attributes(param.hir_id, Target::Param); |
| 481 | |
| 482 | intravisit::walk_param(self, param); |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | // FIXME(eddyb) DRY this somehow and make it reusable from somewhere in `rustc`. |
nothing calls this directly
no test coverage detected