(self, value, nextNode=None)
| 27 | __slots__ = {'value', 'nextNodes', 'breakable'} |
| 28 | |
| 29 | def __init__(self, value, nextNode=None): |
| 30 | self.value = value |
| 31 | if nextNode: |
| 32 | self.nextNodes = [nextNode] |
| 33 | else: |
| 34 | self.nextNodes = [] |
| 35 | self.breakable = False |
| 36 | |
| 37 | def addNext(self, nextNode): |
| 38 | self.nextNodes.append(nextNode) |
nothing calls this directly
no outgoing calls
no test coverage detected