Indicate that we have left a for loop body block.
(self)
| 778 | self.inForBodyStack.append(bodyBlockArgs) |
| 779 | |
| 780 | def popForBodyStack(self): |
| 781 | """Indicate that we have left a for loop body block.""" |
| 782 | self.inForBodyStack.pop() |
| 783 | |
| 784 | def pushIfStmtBlockStack(self): |
| 785 | """Indicate that we are entering an if statement then or else block.""" |