Yield node and all descendants in depth-first order.
(node)
| 1165 | |
| 1166 | |
| 1167 | def _walk(node): |
| 1168 | """Yield node and all descendants in depth-first order.""" |
| 1169 | yield node |
| 1170 | for child in node.children: |
| 1171 | yield from _walk(child) |
| 1172 | |
| 1173 | |
| 1174 | def _find_field_decl_default(class_node, src: bytes): |
no outgoing calls
no test coverage detected