(phase)
| 16342 | |
| 16343 | |
| 16344 | function beginPhase(phase) { |
| 16345 | if ($rootScope.$$phase) { |
| 16346 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 16347 | } |
| 16348 | |
| 16349 | $rootScope.$$phase = phase; |
| 16350 | } |
| 16351 | |
| 16352 | function clearPhase() { |
| 16353 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected