(fn, a, b, c, d)
| 12898 | } |
| 12899 | } |
| 12900 | function syncUpdates(fn, a, b, c, d) { |
| 12901 | var previousExpirationContext = expirationContext; |
| 12902 | expirationContext = Sync; |
| 12903 | try { |
| 12904 | return fn(a, b, c, d); |
| 12905 | } finally { |
| 12906 | expirationContext = previousExpirationContext; |
| 12907 | } |
| 12908 | } |
| 12909 | |
| 12910 | // TODO: Everything below this is written as if it has been lifted to the |
| 12911 | // renderers. I'll do this in a follow-up. |
no outgoing calls
no test coverage detected