(phase)
| 19157 | |
| 19158 | |
| 19159 | function beginPhase(phase) { |
| 19160 | if ($rootScope.$$phase) { |
| 19161 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 19162 | } |
| 19163 | |
| 19164 | $rootScope.$$phase = phase; |
| 19165 | } |
| 19166 | |
| 19167 | function clearPhase() { |
| 19168 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected