()
| 18387 | function initWatchVal() {} |
| 18388 | |
| 18389 | function flushApplyAsync() { |
| 18390 | while (applyAsyncQueue.length) { |
| 18391 | try { |
| 18392 | applyAsyncQueue.shift()(); |
| 18393 | } catch (e) { |
| 18394 | $exceptionHandler(e); |
| 18395 | } |
| 18396 | } |
| 18397 | applyAsyncId = null; |
| 18398 | } |
| 18399 | |
| 18400 | function scheduleApplyAsync() { |
| 18401 | if (applyAsyncId === null) { |
no outgoing calls
no test coverage detected