(phase)
| 14920 | |
| 14921 | |
| 14922 | function beginPhase(phase) { |
| 14923 | if ($rootScope.$$phase) { |
| 14924 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 14925 | } |
| 14926 | |
| 14927 | $rootScope.$$phase = phase; |
| 14928 | } |
| 14929 | |
| 14930 | function clearPhase() { |
| 14931 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected