capturing-func-alias-captured-mutate-arr.js — react Source File
Architecture documentation for capturing-func-alias-captured-mutate-arr.js, a javascript file in the react codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 1af19d60_c092_cd40_af59_3b0a654ddde6["capturing-func-alias-captured-mutate-arr.js"] 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"] 1af19d60_c092_cd40_af59_3b0a654ddde6 --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05 style 1af19d60_c092_cd40_af59_3b0a654ddde6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {mutate} from 'shared-runtime';
function Component({foo, bar}) {
let x = {foo};
let y = {bar};
const f0 = function () {
let a = [y];
let b = x;
a.x = b;
};
f0();
mutate(y);
return y;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{foo: 2, bar: 3}],
sequentialRenders: [
{foo: 2, bar: 3},
{foo: 2, bar: 3},
{foo: 2, bar: 4},
{foo: 3, bar: 4},
],
};
Domain
Subdomains
Functions
Dependencies
- shared-runtime
Source
Frequently Asked Questions
What does capturing-func-alias-captured-mutate-arr.js do?
capturing-func-alias-captured-mutate-arr.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 capturing-func-alias-captured-mutate-arr.js?
capturing-func-alias-captured-mutate-arr.js defines 1 function(s): Component.
What does capturing-func-alias-captured-mutate-arr.js depend on?
capturing-func-alias-captured-mutate-arr.js imports 1 module(s): shared-runtime.
Where is capturing-func-alias-captured-mutate-arr.js in the architecture?
capturing-func-alias-captured-mutate-arr.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/capturing-func-alias-captured-mutate-arr.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