()
| 19791 | function initWatchVal() {} |
| 19792 | |
| 19793 | function flushApplyAsync() { |
| 19794 | while (applyAsyncQueue.length) { |
| 19795 | try { |
| 19796 | applyAsyncQueue.shift()(); |
| 19797 | } catch (e) { |
| 19798 | $exceptionHandler(e); |
| 19799 | } |
| 19800 | } |
| 19801 | applyAsyncId = null; |
| 19802 | } |
| 19803 | |
| 19804 | function scheduleApplyAsync() { |
| 19805 | if (applyAsyncId === null) { |
no outgoing calls
no test coverage detected