()
| 18915 | function initWatchVal() {} |
| 18916 | |
| 18917 | function flushApplyAsync() { |
| 18918 | while (applyAsyncQueue.length) { |
| 18919 | try { |
| 18920 | applyAsyncQueue.shift()(); |
| 18921 | } catch (e) { |
| 18922 | $exceptionHandler(e); |
| 18923 | } |
| 18924 | } |
| 18925 | applyAsyncId = null; |
| 18926 | } |
| 18927 | |
| 18928 | function scheduleApplyAsync() { |
| 18929 | if (applyAsyncId === null) { |
no outgoing calls
no test coverage detected