(phase)
| 16196 | |
| 16197 | |
| 16198 | function beginPhase(phase) { |
| 16199 | if ($rootScope.$$phase) { |
| 16200 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 16201 | } |
| 16202 | |
| 16203 | $rootScope.$$phase = phase; |
| 16204 | } |
| 16205 | |
| 16206 | function clearPhase() { |
| 16207 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected