pythonExtractor.isAsync: the PREVIOUS SIBLING token is `async`.
(&self, node: Node)
| 302 | |
| 303 | /// pythonExtractor.isAsync: the PREVIOUS SIBLING token is `async`. |
| 304 | fn is_async(&self, node: Node) -> bool { |
| 305 | node.prev_sibling().map(|p| p.kind() == "async").unwrap_or(false) |
| 306 | } |
| 307 | |
| 308 | /// pythonExtractor.isStatic: preceding decorator mentioning `staticmethod`. |
| 309 | fn is_static(&self, node: Node) -> bool { |
no outgoing calls
no test coverage detected