(state, resources)
| 17761 | } |
| 17762 | var precedencesByRoot = null; |
| 17763 | function insertSuspendedStylesheets(state, resources) { |
| 17764 | state.stylesheets = null; |
| 17765 | null !== state.unsuspend && |
| 17766 | (state.count++, |
| 17767 | (precedencesByRoot = new Map()), |
| 17768 | resources.forEach(insertStylesheetIntoRoot, state), |
| 17769 | (precedencesByRoot = null), |
| 17770 | onUnsuspend.call(state)); |
| 17771 | } |
| 17772 | function insertStylesheetIntoRoot(root, resource) { |
| 17773 | if (!(resource.state.loading & 4)) { |
| 17774 | var precedences = precedencesByRoot.get(root); |
no outgoing calls
no test coverage detected
searching dependent graphs…