Indicate that we are entering a for loop body block.
(self, bodyBlockArgs)
| 774 | return values |
| 775 | |
| 776 | def pushForBodyStack(self, bodyBlockArgs): |
| 777 | """Indicate that we are entering a for loop body block.""" |
| 778 | self.inForBodyStack.append(bodyBlockArgs) |
| 779 | |
| 780 | def popForBodyStack(self): |
| 781 | """Indicate that we have left a for loop body block.""" |