existing-variables-with-c-name.js — react Source File
Architecture documentation for existing-variables-with-c-name.js, a javascript file in the react codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR d762ee8e_22b3_f7f7_4e55_f061e87499ca["existing-variables-with-c-name.js"] ac587885_e294_a1e9_b13f_5e7b920fdb42["react"] d762ee8e_22b3_f7f7_4e55_f061e87499ca --> ac587885_e294_a1e9_b13f_5e7b920fdb42 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"] d762ee8e_22b3_f7f7_4e55_f061e87499ca --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05 style d762ee8e_22b3_f7f7_4e55_f061e87499ca fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
// @enablePreserveExistingMemoizationGuarantees:false @validateExhaustiveMemoizationDependencies:false
import {useMemo, useState} from 'react';
import {ValidateMemoization} from 'shared-runtime';
function Component(props) {
const [state] = useState(0);
// Test for conflicts with `c` import
const c = state;
const _c = c;
const __c = _c;
const c1 = __c;
const $c = c1;
const array = useMemo(() => [$c], [state]);
return <ValidateMemoization inputs={[state]} output={array} />;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{}],
sequentialRenders: [{}, {}, {}],
};
Domain
Subdomains
Functions
Dependencies
- react
- shared-runtime
Source
Frequently Asked Questions
What does existing-variables-with-c-name.js do?
existing-variables-with-c-name.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 existing-variables-with-c-name.js?
existing-variables-with-c-name.js defines 1 function(s): Component.
What does existing-variables-with-c-name.js depend on?
existing-variables-with-c-name.js imports 2 module(s): react, shared-runtime.
Where is existing-variables-with-c-name.js in the architecture?
existing-variables-with-c-name.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/existing-variables-with-c-name.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