(self)
| 82 | return self.parse_command_tokens() |
| 83 | |
| 84 | def parse_command_tokens(self): |
| 85 | if self.command_tokens is None: |
| 86 | return |
| 87 | for command_token in self.command_tokens: |
| 88 | if self.asIds: |
| 89 | setattr(self, command_token.name, command_token.Id) |
| 90 | else: |
| 91 | setattr(self, command_token.name, command_token.token) |
| 92 | |
| 93 | def __getitem__(self, index): |
| 94 | return self.tokenization[index] |
no outgoing calls
no test coverage detected