(&self, node: Node)
| 433 | } |
| 434 | |
| 435 | fn is_static(&self, node: Node) -> bool { |
| 436 | (0..node.child_count()) |
| 437 | .filter_map(|i| node.child(i)) |
| 438 | .any(|c| c.kind() == "modifier" && self.text(c) == "static") |
| 439 | } |
| 440 | |
| 441 | fn is_async(&self, node: Node) -> bool { |
| 442 | (0..node.child_count()) |
no test coverage detected