optional-member-expression-inverted-optionals-parallel-paths.js — react Source File
Architecture documentation for optional-member-expression-inverted-optionals-parallel-paths.js, a javascript file in the react codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR c9059ea9_44b7_c342_de72_7080a3c82389["optional-member-expression-inverted-optionals-parallel-paths.js"] 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"] c9059ea9_44b7_c342_de72_7080a3c82389 --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05 style c9059ea9_44b7_c342_de72_7080a3c82389 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
// @validatePreserveExistingMemoizationGuarantees @enableOptionalDependencies @enablePropagateDepsInHIR
import {ValidateMemoization} from 'shared-runtime';
function Component(props) {
const data = useMemo(() => {
const x = [];
x.push(props?.a.b?.c.d?.e);
x.push(props.a?.b.c?.d.e);
return x;
}, [props.a.b.c.d.e]);
return <ValidateMemoization inputs={[props.a.b.c.d.e]} output={x} />;
}
Domain
Subdomains
Functions
Dependencies
- shared-runtime
Source
Frequently Asked Questions
What does optional-member-expression-inverted-optionals-parallel-paths.js do?
optional-member-expression-inverted-optionals-parallel-paths.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 optional-member-expression-inverted-optionals-parallel-paths.js?
optional-member-expression-inverted-optionals-parallel-paths.js defines 1 function(s): Component.
What does optional-member-expression-inverted-optionals-parallel-paths.js depend on?
optional-member-expression-inverted-optionals-parallel-paths.js imports 1 module(s): shared-runtime.
Where is optional-member-expression-inverted-optionals-parallel-paths.js in the architecture?
optional-member-expression-inverted-optionals-parallel-paths.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/propagate-scope-deps-hir-fork/optional-member-expression-inverted-optionals-parallel-paths.js (domain: TestingUtilities, subdomain: Fixtures, directory: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/propagate-scope-deps-hir-fork).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free