()
| 17208 | function initWatchVal() {} |
| 17209 | |
| 17210 | function flushApplyAsync() { |
| 17211 | while (applyAsyncQueue.length) { |
| 17212 | try { |
| 17213 | applyAsyncQueue.shift()(); |
| 17214 | } catch (e) { |
| 17215 | $exceptionHandler(e); |
| 17216 | } |
| 17217 | } |
| 17218 | applyAsyncId = null; |
| 17219 | } |
| 17220 | |
| 17221 | function scheduleApplyAsync() { |
| 17222 | if (applyAsyncId === null) { |
no outgoing calls
no test coverage detected