(fn, a, b, c, d)
| 13630 | } |
| 13631 | } |
| 13632 | function syncUpdates(fn, a, b, c, d) { |
| 13633 | var previousExpirationContext = expirationContext; |
| 13634 | expirationContext = Sync; |
| 13635 | try { |
| 13636 | return fn(a, b, c, d); |
| 13637 | } finally { |
| 13638 | expirationContext = previousExpirationContext; |
| 13639 | } |
| 13640 | } |
| 13641 | |
| 13642 | // TODO: Everything below this is written as if it has been lifted to the |
| 13643 | // renderers. I'll do this in a follow-up. |
no outgoing calls
no test coverage detected