()
| 14949 | function initWatchVal() {} |
| 14950 | |
| 14951 | function flushApplyAsync() { |
| 14952 | while (applyAsyncQueue.length) { |
| 14953 | try { |
| 14954 | applyAsyncQueue.shift()(); |
| 14955 | } catch (e) { |
| 14956 | $exceptionHandler(e); |
| 14957 | } |
| 14958 | } |
| 14959 | applyAsyncId = null; |
| 14960 | } |
| 14961 | |
| 14962 | function scheduleApplyAsync() { |
| 14963 | if (applyAsyncId === null) { |
no outgoing calls
no test coverage detected