(self, text : str)
| 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") |
| 334 | def parseClosingWhile(self, table, tableIndex : int): |
| 335 | t0_full = table.cell(0, tableIndex).text |
| 336 | text = t0_full.strip() |