(&self, node: Node)
| 815 | } |
| 816 | |
| 817 | fn is_async(&self, node: Node) -> bool { |
| 818 | self.has_keyword_child(node, "async") |
| 819 | } |
| 820 | |
| 821 | /// TS has an isStatic hook; JS does not (None = field absent). |
| 822 | fn is_static(&self, node: Node) -> Option<bool> { |
no test coverage detected