(fn)
| 12760 | } |
| 12761 | |
| 12762 | function deferredUpdates(fn) { |
| 12763 | var previousExpirationContext = expirationContext; |
| 12764 | var currentTime = recalculateCurrentTime(); |
| 12765 | expirationContext = computeAsyncExpiration(currentTime); |
| 12766 | try { |
| 12767 | return fn(); |
| 12768 | } finally { |
| 12769 | expirationContext = previousExpirationContext; |
| 12770 | } |
| 12771 | } |
| 12772 | function syncUpdates(fn, a, b, c, d) { |
| 12773 | var previousExpirationContext = expirationContext; |
| 12774 | expirationContext = Sync; |
nothing calls this directly
no test coverage detected