(phase)
| 14702 | |
| 14703 | |
| 14704 | function beginPhase(phase) { |
| 14705 | if ($rootScope.$$phase) { |
| 14706 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 14707 | } |
| 14708 | |
| 14709 | $rootScope.$$phase = phase; |
| 14710 | } |
| 14711 | |
| 14712 | function clearPhase() { |
| 14713 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected