:param lines list[Tree]: :param parent Group: :rtype: Node
(lines, parent)
| 128 | @staticmethod |
| 129 | @abc.abstractmethod |
| 130 | def make_root_node(lines, parent): |
| 131 | """ |
| 132 | :param lines list[Tree]: |
| 133 | :param parent Group: |
| 134 | :rtype: Node |
| 135 | """ |
| 136 | |
| 137 | @staticmethod |
| 138 | @abc.abstractmethod |
nothing calls this directly
no outgoing calls
no test coverage detected