()
| 14731 | function initWatchVal() {} |
| 14732 | |
| 14733 | function flushApplyAsync() { |
| 14734 | while (applyAsyncQueue.length) { |
| 14735 | try { |
| 14736 | applyAsyncQueue.shift()(); |
| 14737 | } catch (e) { |
| 14738 | $exceptionHandler(e); |
| 14739 | } |
| 14740 | } |
| 14741 | applyAsyncId = null; |
| 14742 | } |
| 14743 | |
| 14744 | function scheduleApplyAsync() { |
| 14745 | if (applyAsyncId === null) { |
no outgoing calls
no test coverage detected