(self)
| 181 | """ |
| 182 | |
| 183 | def __init__(self): |
| 184 | self._stack = [_StackEntry(None)] |
| 185 | self._is_registration_allowed = True |
| 186 | |
| 187 | def push_predicate(self, predicate): |
| 188 | """Add next level of if/else scope that is predicated with the `predicate`. |
nothing calls this directly
no test coverage detected