(contextMap: Map<ReactContext<any>, any>)
| 1250 | } |
| 1251 | |
| 1252 | function restoreContexts(contextMap: Map<ReactContext<any>, any>) { |
| 1253 | contextMap.forEach((value, context) => (context._currentValue = value)); |
| 1254 | } |
| 1255 | |
| 1256 | function inspectHooksOfForwardRef<Props, Ref>( |
| 1257 | renderFunction: (Props, Ref) => React$Node, |
no test coverage detected