(phase)
| 12977 | |
| 12978 | |
| 12979 | function beginPhase(phase) { |
| 12980 | if ($rootScope.$$phase) { |
| 12981 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 12982 | } |
| 12983 | |
| 12984 | $rootScope.$$phase = phase; |
| 12985 | } |
| 12986 | |
| 12987 | function clearPhase() { |
| 12988 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected