(phase)
| 19177 | |
| 19178 | |
| 19179 | function beginPhase(phase) { |
| 19180 | if ($rootScope.$$phase) { |
| 19181 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 19182 | } |
| 19183 | |
| 19184 | $rootScope.$$phase = phase; |
| 19185 | } |
| 19186 | |
| 19187 | function clearPhase() { |
| 19188 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected