(node)
| 89 | |
| 90 | @staticmethod |
| 91 | def get_function_list(node): |
| 92 | res = get_node_by_kind(node, ['method_declaration', 'function_declaration']) |
| 93 | return res |
| 94 | |
| 95 | @staticmethod |
| 96 | def get_function_metadata(function_node, blob: str=None) -> Dict[str, str]: |