(fn, a, b, c, d)
| 12770 | } |
| 12771 | } |
| 12772 | function syncUpdates(fn, a, b, c, d) { |
| 12773 | var previousExpirationContext = expirationContext; |
| 12774 | expirationContext = Sync; |
| 12775 | try { |
| 12776 | return fn(a, b, c, d); |
| 12777 | } finally { |
| 12778 | expirationContext = previousExpirationContext; |
| 12779 | } |
| 12780 | } |
| 12781 | |
| 12782 | // TODO: Everything below this is written as if it has been lifted to the |
| 12783 | // renderers. I'll do this in a follow-up. |
no outgoing calls
no test coverage detected