()
| 16376 | function initWatchVal() {} |
| 16377 | |
| 16378 | function flushApplyAsync() { |
| 16379 | while (applyAsyncQueue.length) { |
| 16380 | try { |
| 16381 | applyAsyncQueue.shift()(); |
| 16382 | } catch (e) { |
| 16383 | $exceptionHandler(e); |
| 16384 | } |
| 16385 | } |
| 16386 | applyAsyncId = null; |
| 16387 | } |
| 16388 | |
| 16389 | function scheduleApplyAsync() { |
| 16390 | if (applyAsyncId === null) { |
no outgoing calls
no test coverage detected