(type)
| 27671 | } |
| 27672 | }; |
| 27673 | function resolveFunctionForHotReloading(type) { |
| 27674 | { |
| 27675 | if (resolveFamily === null) { |
| 27676 | // Hot reloading is disabled. |
| 27677 | return type; |
| 27678 | } |
| 27679 | |
| 27680 | var family = resolveFamily(type); |
| 27681 | |
| 27682 | if (family === undefined) { |
| 27683 | return type; |
| 27684 | } // Use the latest known implementation. |
| 27685 | |
| 27686 | |
| 27687 | return family.current; |
| 27688 | } |
| 27689 | } |
| 27690 | function resolveClassForHotReloading(type) { |
| 27691 | // No implementation differences. |
| 27692 | return resolveFunctionForHotReloading(type); |
no outgoing calls
no test coverage detected
searching dependent graphs…