Indicate that we have just left an if statement then or else block.
(self)
| 786 | self.inIfStmtBlockStack += 1 |
| 787 | |
| 788 | def popIfStmtBlockStack(self): |
| 789 | """Indicate that we have just left an if statement then or else |
| 790 | block.""" |
| 791 | assert self.inIfStmtBlockStack > 0 |
| 792 | self.inIfStmtBlockStack -= 1 |
| 793 | |
| 794 | def isInForBody(self): |
| 795 | """Return True if the current insertion point is within a for body |
no outgoing calls
no test coverage detected