(self, parent)
| 326 | |
| 327 | class ContainerDo(Container): |
| 328 | def __init__(self, parent): |
| 329 | super().__init__(parent) |
| 330 | self.condition = None |
| 331 | def fromText(self, text : str): |
| 332 | if (not text.startswith("do")): |
| 333 | raise SyntaxError("Do container does not start with do") |