()
| 19191 | function initWatchVal() {} |
| 19192 | |
| 19193 | function flushApplyAsync() { |
| 19194 | while (applyAsyncQueue.length) { |
| 19195 | try { |
| 19196 | applyAsyncQueue.shift()(); |
| 19197 | } catch (e) { |
| 19198 | $exceptionHandler(e); |
| 19199 | } |
| 19200 | } |
| 19201 | applyAsyncId = null; |
| 19202 | } |
| 19203 | |
| 19204 | function scheduleApplyAsync() { |
| 19205 | if (applyAsyncId === null) { |
no outgoing calls
no test coverage detected