()
| 16230 | function initWatchVal() {} |
| 16231 | |
| 16232 | function flushApplyAsync() { |
| 16233 | while (applyAsyncQueue.length) { |
| 16234 | try { |
| 16235 | applyAsyncQueue.shift()(); |
| 16236 | } catch (e) { |
| 16237 | $exceptionHandler(e); |
| 16238 | } |
| 16239 | } |
| 16240 | applyAsyncId = null; |
| 16241 | } |
| 16242 | |
| 16243 | function scheduleApplyAsync() { |
| 16244 | if (applyAsyncId === null) { |
no outgoing calls
no test coverage detected