(phase)
| 18353 | |
| 18354 | |
| 18355 | function beginPhase(phase) { |
| 18356 | if ($rootScope.$$phase) { |
| 18357 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 18358 | } |
| 18359 | |
| 18360 | $rootScope.$$phase = phase; |
| 18361 | } |
| 18362 | |
| 18363 | function clearPhase() { |
| 18364 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected