Forwards to the enclosing while context, if any.
(self)
| 523 | |
| 524 | @property |
| 525 | def back_prop(self): |
| 526 | """Forwards to the enclosing while context, if any.""" |
| 527 | if self.GetWhileContext(): |
| 528 | return self.GetWhileContext().back_prop |
| 529 | return False |
| 530 | |
| 531 | def GetControlPivot(self): |
| 532 | return self._pivot |
nothing calls this directly
no test coverage detected