( initial: RuntimeFlags.RuntimeFlags )
| 2007 | |
| 2008 | /** @internal */ |
| 2009 | export const fiberRefUnsafeMakeRuntimeFlags = ( |
| 2010 | initial: RuntimeFlags.RuntimeFlags |
| 2011 | ): FiberRef.FiberRef<RuntimeFlags.RuntimeFlags> => |
| 2012 | fiberRefUnsafeMakePatch(initial, { |
| 2013 | differ: runtimeFlags_.differ, |
| 2014 | fork: runtimeFlags_.differ.empty |
| 2015 | }) |
| 2016 | |
| 2017 | /** @internal */ |
| 2018 | export const currentContext: FiberRef.FiberRef<Context.Context<never>> = globalValue( |
nothing calls this directly
no test coverage detected
searching dependent graphs…