(phase)
| 19822 | |
| 19823 | |
| 19824 | function beginPhase(phase) { |
| 19825 | if ($rootScope.$$phase) { |
| 19826 | throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); |
| 19827 | } |
| 19828 | |
| 19829 | $rootScope.$$phase = phase; |
| 19830 | } |
| 19831 | |
| 19832 | function clearPhase() { |
| 19833 | $rootScope.$$phase = null; |
no outgoing calls
no test coverage detected