(phase)
| 16738 | |
| 16739 | |
| 16740 | function beginPhase(phase) { |
| 16741 | if ($rootScope.$$phase) { |
| 16742 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 16743 | } |
| 16744 | |
| 16745 | $rootScope.$$phase = phase; |
| 16746 | } |
| 16747 | |
| 16748 | function clearPhase() { |
| 16749 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected