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