(phase)
| 19757 | |
| 19758 | |
| 19759 | function beginPhase(phase) { |
| 19760 | if ($rootScope.$$phase) { |
| 19761 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 19762 | } |
| 19763 | |
| 19764 | $rootScope.$$phase = phase; |
| 19765 | } |
| 19766 | |
| 19767 | function clearPhase() { |
| 19768 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected