(phase)
| 17174 | |
| 17175 | |
| 17176 | function beginPhase(phase) { |
| 17177 | if ($rootScope.$$phase) { |
| 17178 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 17179 | } |
| 17180 | |
| 17181 | $rootScope.$$phase = phase; |
| 17182 | } |
| 17183 | |
| 17184 | function clearPhase() { |
| 17185 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected