(phase)
| 13171 | |
| 13172 | |
| 13173 | function beginPhase(phase) { |
| 13174 | if ($rootScope.$$phase) { |
| 13175 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 13176 | } |
| 13177 | |
| 13178 | $rootScope.$$phase = phase; |
| 13179 | } |
| 13180 | |
| 13181 | function clearPhase() { |
| 13182 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected