(fn, a, b, c, d)
| 13675 | } |
| 13676 | } |
| 13677 | function syncUpdates(fn, a, b, c, d) { |
| 13678 | var previousExpirationContext = expirationContext; |
| 13679 | expirationContext = Sync; |
| 13680 | try { |
| 13681 | return fn(a, b, c, d); |
| 13682 | } finally { |
| 13683 | expirationContext = previousExpirationContext; |
| 13684 | } |
| 13685 | } |
| 13686 | |
| 13687 | // TODO: Everything below this is written as if it has been lifted to the |
| 13688 | // renderers. I'll do this in a follow-up. |
no outgoing calls
no test coverage detected