(self)
| 94 | return self.tokenization[index] |
| 95 | |
| 96 | def __len__(self): |
| 97 | return len(self.tokenization) |
| 98 | |
| 99 | def insert(self, idx, other): |
| 100 | if isinstance(other, (CommandToken, TypeToken)): |
nothing calls this directly
no outgoing calls
no test coverage detected