(&self, node: Node)
| 828 | } |
| 829 | |
| 830 | fn is_const_decl(&self, node: Node) -> bool { |
| 831 | node.kind() == "lexical_declaration" && self.has_keyword_child(node, "const") |
| 832 | } |
| 833 | |
| 834 | // (extract_* functions continue in impl blocks below) |
| 835 | } |
no test coverage detected