(self)
| 153 | child.initializeChildren() |
| 154 | |
| 155 | def unset(self): |
| 156 | self.isDesignated = False |
| 157 | self.isPositional = False |
| 158 | |
| 159 | # Unset is always recursive |
| 160 | for child in self.children: |
| 161 | child.unset() |
| 162 | |
| 163 | def markStuctureViolation(self, token): |
| 164 | if self.name == '->': |