(node)
| 23 | |
| 24 | @staticmethod |
| 25 | def get_class_list(node): |
| 26 | res = get_node_by_kind(node, ['impl_item', 'mod_item']) # trait is like an interface |
| 27 | return res |
| 28 | |
| 29 | @staticmethod |
| 30 | def get_docstring_node(node) -> List: |
nothing calls this directly
no test coverage detected