(node: Node)
| 75 | |
| 76 | |
| 77 | def get_definition_name(node: Node) -> str: |
| 78 | for child in node.children: |
| 79 | if child.type == IDENTIFIER_TYPE: |
| 80 | return child.text.decode("utf8") |
| 81 | |
| 82 | |
| 83 | def traverse_tree(node: Node) -> Generator[Node, None, None]: |
no outgoing calls
no test coverage detected