(fn, a, b, c, d)
| 13410 | } |
| 13411 | } |
| 13412 | function syncUpdates(fn, a, b, c, d) { |
| 13413 | var previousExpirationContext = expirationContext; |
| 13414 | expirationContext = Sync; |
| 13415 | try { |
| 13416 | return fn(a, b, c, d); |
| 13417 | } finally { |
| 13418 | expirationContext = previousExpirationContext; |
| 13419 | } |
| 13420 | } |
| 13421 | |
| 13422 | // TODO: Everything below this is written as if it has been lifted to the |
| 13423 | // renderers. I'll do this in a follow-up. |
no outgoing calls
no test coverage detected