weakset-constructor.js — react Source File
Architecture documentation for weakset-constructor.js, a javascript file in the react codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 608ca3b9_cb1e_b85f_05ff_2ac7cfff7a82["weakset-constructor.js"] ac587885_e294_a1e9_b13f_5e7b920fdb42["react"] 608ca3b9_cb1e_b85f_05ff_2ac7cfff7a82 --> ac587885_e294_a1e9_b13f_5e7b920fdb42 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"] 608ca3b9_cb1e_b85f_05ff_2ac7cfff7a82 --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05 style 608ca3b9_cb1e_b85f_05ff_2ac7cfff7a82 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 set = new WeakSet();
const setAlias = set.add(a);
setAlias.add(c);
const hasB = set.has(b);
return (
<>
<ValidateMemoization
inputs={[a, c]}
output={set}
onlyCheckCompiled={true}
/>
<ValidateMemoization
inputs={[a, c]}
output={setAlias}
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 weakset-constructor.js do?
weakset-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 weakset-constructor.js?
weakset-constructor.js defines 1 function(s): Component.
What does weakset-constructor.js depend on?
weakset-constructor.js imports 2 module(s): react, shared-runtime.
Where is weakset-constructor.js in the architecture?
weakset-constructor.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/weakset-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