Is the node a special root node?
(self)
| 125 | |
| 126 | @property |
| 127 | def is_root(self) -> bool: |
| 128 | """Is the node a special root node?""" |
| 129 | return not (self.token or self.nester_tokens) |
| 130 | |
| 131 | @property |
| 132 | def is_nested(self) -> bool: |
nothing calls this directly
no outgoing calls
no test coverage detected