(self, token)
| 161 | child.unset() |
| 162 | |
| 163 | def markStuctureViolation(self, token): |
| 164 | if self.name == '->': |
| 165 | self.children[0].markStuctureViolation(token) |
| 166 | elif not self.structureViolationToken: |
| 167 | self.structureViolationToken = token |
| 168 | |
| 169 | def markAsFlexibleArray(self, token): |
| 170 | self.flexibleToken = token |
no outgoing calls
no test coverage detected