function-expression-prototype-call-mutating.js — react Source File
Architecture documentation for function-expression-prototype-call-mutating.js, a javascript file in the react codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 43e09a1b_02fd_8aad_3108_dca4084c1301["function-expression-prototype-call-mutating.js"] ac587885_e294_a1e9_b13f_5e7b920fdb42["react"] 43e09a1b_02fd_8aad_3108_dca4084c1301 --> ac587885_e294_a1e9_b13f_5e7b920fdb42 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"] 43e09a1b_02fd_8aad_3108_dca4084c1301 --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05 style 43e09a1b_02fd_8aad_3108_dca4084c1301 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {useMemo} from 'react';
import {ValidateMemoization} from 'shared-runtime';
function Component(props) {
const a = useMemo(() => {
const a = [];
const f = function () {
a.push(props.name);
};
f.call();
return a;
}, [props.name]);
return <ValidateMemoization inputs={[props.name]} output={a} />;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{name: 'Jason'}],
sequentialRenders: [{name: 'Lauren'}, {name: 'Lauren'}, {name: 'Jason'}],
};
Domain
Subdomains
Functions
Dependencies
- react
- shared-runtime
Source
Frequently Asked Questions
What does function-expression-prototype-call-mutating.js do?
function-expression-prototype-call-mutating.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 function-expression-prototype-call-mutating.js?
function-expression-prototype-call-mutating.js defines 1 function(s): Component.
What does function-expression-prototype-call-mutating.js depend on?
function-expression-prototype-call-mutating.js imports 2 module(s): react, shared-runtime.
Where is function-expression-prototype-call-mutating.js in the architecture?
function-expression-prototype-call-mutating.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/function-expression-prototype-call-mutating.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