Notifies a scope about an operator added to an inner scope.
(self, op)
| 784 | # pylint: enable=protected-access |
| 785 | |
| 786 | def AddInnerOp(self, op): |
| 787 | """Notifies a scope about an operator added to an inner scope.""" |
| 788 | if self._outer_context: |
| 789 | self._outer_context.AddInnerOp(op) |
| 790 | |
| 791 | def GetControlPivot(self): |
| 792 | """Returns the pivot node for this context, or None.""" |
no outgoing calls
no test coverage detected