weakmap-constructor.js — react Source File
Architecture documentation for weakmap-constructor.js, a javascript file in the react codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 26759c0a_f366_a84a_b7db_7dc249934992["weakmap-constructor.js"] ac587885_e294_a1e9_b13f_5e7b920fdb42["react"] 26759c0a_f366_a84a_b7db_7dc249934992 --> ac587885_e294_a1e9_b13f_5e7b920fdb42 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"] 26759c0a_f366_a84a_b7db_7dc249934992 --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05 style 26759c0a_f366_a84a_b7db_7dc249934992 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {useMemo} from 'react';
import {ValidateMemoization} from 'shared-runtime';
function Component({a, b, c}) {
const map = new WeakMap();
const mapAlias = map.set(a, 0);
mapAlias.set(c, 0);
const hasB = map.has(b);
return (
<>
<ValidateMemoization
inputs={[a, c]}
output={map}
onlyCheckCompiled={true}
/>
<ValidateMemoization
inputs={[a, c]}
output={mapAlias}
onlyCheckCompiled={true}
/>
<ValidateMemoization
inputs={[b]}
output={[hasB]}
onlyCheckCompiled={true}
/>
</>
);
}
const v1 = {value: 1};
const v2 = {value: 2};
const v3 = {value: 3};
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{a: v1, b: v1, c: v1}],
sequentialRenders: [
{a: v1, b: v1, c: v1},
{a: v2, b: v1, c: v1},
{a: v1, b: v1, c: v1},
{a: v1, b: v2, c: v1},
{a: v1, b: v1, c: v1},
{a: v3, b: v3, c: v1},
{a: v3, b: v3, c: v1},
{a: v1, b: v1, c: v1},
],
};
Domain
Subdomains
Functions
Dependencies
- react
- shared-runtime
Source
Frequently Asked Questions
What does weakmap-constructor.js do?
weakmap-constructor.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 weakmap-constructor.js?
weakmap-constructor.js defines 1 function(s): Component.
What does weakmap-constructor.js depend on?
weakmap-constructor.js imports 2 module(s): react, shared-runtime.
Where is weakmap-constructor.js in the architecture?
weakmap-constructor.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/weakmap-constructor.js (domain: TestingUtilities, subdomain: Fixtures, directory: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free