merge-consecutive-scopes-reordering.js — react Source File
Architecture documentation for merge-consecutive-scopes-reordering.js, a javascript file in the react codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 0199505c_416e_a941_2483_f06ba0d000c4["merge-consecutive-scopes-reordering.js"] ac587885_e294_a1e9_b13f_5e7b920fdb42["react"] 0199505c_416e_a941_2483_f06ba0d000c4 --> ac587885_e294_a1e9_b13f_5e7b920fdb42 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"] 0199505c_416e_a941_2483_f06ba0d000c4 --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05 style 0199505c_416e_a941_2483_f06ba0d000c4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
// @enableInstructionReordering
import {useState} from 'react';
import {Stringify} from 'shared-runtime';
function Component() {
let [state, setState] = useState(0);
return (
<div>
<Stringify text="Counter" />
<span>{state}</span>
<button data-testid="button" onClick={() => setState(state + 1)}>
increment
</button>
</div>
);
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{value: 42}],
};
Domain
Subdomains
Functions
Dependencies
- react
- shared-runtime
Source
Frequently Asked Questions
What does merge-consecutive-scopes-reordering.js do?
merge-consecutive-scopes-reordering.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 merge-consecutive-scopes-reordering.js?
merge-consecutive-scopes-reordering.js defines 1 function(s): Component.
What does merge-consecutive-scopes-reordering.js depend on?
merge-consecutive-scopes-reordering.js imports 2 module(s): react, shared-runtime.
Where is merge-consecutive-scopes-reordering.js in the architecture?
merge-consecutive-scopes-reordering.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/merge-consecutive-scopes-reordering.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