()
| 19211 | function initWatchVal() {} |
| 19212 | |
| 19213 | function flushApplyAsync() { |
| 19214 | while (applyAsyncQueue.length) { |
| 19215 | try { |
| 19216 | applyAsyncQueue.shift()(); |
| 19217 | } catch (e) { |
| 19218 | $exceptionHandler(e); |
| 19219 | } |
| 19220 | } |
| 19221 | applyAsyncId = null; |
| 19222 | } |
| 19223 | |
| 19224 | function scheduleApplyAsync() { |
| 19225 | if (applyAsyncId === null) { |
no outgoing calls
no test coverage detected