(phase)
| 18881 | |
| 18882 | |
| 18883 | function beginPhase(phase) { |
| 18884 | if ($rootScope.$$phase) { |
| 18885 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 18886 | } |
| 18887 | |
| 18888 | $rootScope.$$phase = phase; |
| 18889 | } |
| 18890 | |
| 18891 | function clearPhase() { |
| 18892 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected