error.invalid-referencing-frozen-hoisted-storecontext-const.js — react Source File
Architecture documentation for error.invalid-referencing-frozen-hoisted-storecontext-const.js, a javascript file in the react codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 72f80a49_6b81_c4a3_fc4b_983d9110f46d["error.invalid-referencing-frozen-hoisted-storecontext-const.js"] ac587885_e294_a1e9_b13f_5e7b920fdb42["react"] 72f80a49_6b81_c4a3_fc4b_983d9110f46d --> ac587885_e294_a1e9_b13f_5e7b920fdb42 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"] 72f80a49_6b81_c4a3_fc4b_983d9110f46d --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05 style 72f80a49_6b81_c4a3_fc4b_983d9110f46d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
//@flow @validatePreserveExistingMemoizationGuarantees @enableNewMutationAliasingModel
import {useCallback} from 'react';
import {useIdentity} from 'shared-runtime';
function Component({content, refetch}) {
// This callback function accesses a hoisted const as a dependency,
// but it cannot reference it as a dependency since that would be a
// TDZ violation!
const onRefetch = useCallback(() => {
refetch(data);
}, [refetch]);
// The context variable gets frozen here since it's passed to a hook
const onSubmit = useIdentity(onRefetch);
// This has to error: onRefetch needs to memoize with `content` as a
// dependency, but the dependency comes later
const {data = null} = content;
return <Foo data={data} onSubmit={onSubmit} />;
}
Domain
Subdomains
Functions
Dependencies
- react
- shared-runtime
Source
Frequently Asked Questions
What does error.invalid-referencing-frozen-hoisted-storecontext-const.js do?
error.invalid-referencing-frozen-hoisted-storecontext-const.js is a source file in the react codebase, written in javascript. It belongs to the TestingUtilities domain, Fixtures subdomain.
What functions are defined in error.invalid-referencing-frozen-hoisted-storecontext-const.js?
error.invalid-referencing-frozen-hoisted-storecontext-const.js defines 1 function(s): Component.
What does error.invalid-referencing-frozen-hoisted-storecontext-const.js depend on?
error.invalid-referencing-frozen-hoisted-storecontext-const.js imports 2 module(s): react, shared-runtime.
Where is error.invalid-referencing-frozen-hoisted-storecontext-const.js in the architecture?
error.invalid-referencing-frozen-hoisted-storecontext-const.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/error.invalid-referencing-frozen-hoisted-storecontext-const.js (domain: TestingUtilities, subdomain: Fixtures, directory: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free