(&mut self, n: Node<'t>)
| 710 | } |
| 711 | |
| 712 | fn walk_attr_args(&mut self, n: Node<'t>) { |
| 713 | stack_guard!(); |
| 714 | self.extract_static_member_ref(n); |
| 715 | for i in 0..n.named_child_count() { |
| 716 | if let Some(c) = n.named_child(i) { |
| 717 | self.walk_attr_args(c); |
| 718 | } |
| 719 | } |
| 720 | } |
| 721 | |
| 722 | // --- visitFunctionBody --------------------------------------------------------- |
| 723 |
no test coverage detected