(self)
| 588 | yield keyword |
| 589 | |
| 590 | def __len__(self) -> int: |
| 591 | # Doesn't need to be fast. |
| 592 | return sum(1 for keyword in self) |
| 593 | |
| 594 | def __repr__(self) -> str: |
| 595 | return f"<NodeKeywords for node {self.node}>" |
nothing calls this directly
no outgoing calls
no test coverage detected