Indicate that we are entering an if statement then or else block.
(self)
| 782 | self.inForBodyStack.pop() |
| 783 | |
| 784 | def pushIfStmtBlockStack(self): |
| 785 | """Indicate that we are entering an if statement then or else block.""" |
| 786 | self.inIfStmtBlockStack += 1 |
| 787 | |
| 788 | def popIfStmtBlockStack(self): |
| 789 | """Indicate that we have just left an if statement then or else |
no outgoing calls
no test coverage detected