(fn, a, b, c, d)
| 12861 | } |
| 12862 | } |
| 12863 | function syncUpdates(fn, a, b, c, d) { |
| 12864 | var previousExpirationContext = expirationContext; |
| 12865 | expirationContext = Sync; |
| 12866 | try { |
| 12867 | return fn(a, b, c, d); |
| 12868 | } finally { |
| 12869 | expirationContext = previousExpirationContext; |
| 12870 | } |
| 12871 | } |
| 12872 | |
| 12873 | // TODO: Everything below this is written as if it has been lifted to the |
| 12874 | // renderers. I'll do this in a follow-up. |
no outgoing calls
no test coverage detected