conditional-call-chain.tsx — react Source File
Architecture documentation for conditional-call-chain.tsx, a tsx file in the react codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 975d4475_237a_8bc1_ae42_c06850fb6f2f["conditional-call-chain.tsx"] ac587885_e294_a1e9_b13f_5e7b920fdb42["react"] 975d4475_237a_8bc1_ae42_c06850fb6f2f --> ac587885_e294_a1e9_b13f_5e7b920fdb42 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"] 975d4475_237a_8bc1_ae42_c06850fb6f2f --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05 style 975d4475_237a_8bc1_ae42_c06850fb6f2f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {useRef} from 'react';
import {Stringify} from 'shared-runtime';
function Component({a, b}) {
const logA = () => {
console.log(a.value);
};
const logB = () => {
console.log(b.value);
};
const hasLogged = useRef(false);
const log = () => {
if (!hasLogged.current) {
logA();
logB();
hasLogged.current = true;
}
};
return <Stringify log={log} shouldInvokeFns={true} />;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{a: {value: 1}, b: {value: 2}}],
sequentialRenders: [
{a: {value: 1}, b: {value: 2}},
{a: {value: 3}, b: {value: 4}},
],
};
Domain
Subdomains
Functions
Dependencies
- react
- shared-runtime
Source
Frequently Asked Questions
What does conditional-call-chain.tsx do?
conditional-call-chain.tsx is a source file in the react codebase, written in tsx. It belongs to the TestingUtilities domain, Fixtures subdomain.
What functions are defined in conditional-call-chain.tsx?
conditional-call-chain.tsx defines 1 function(s): Component.
What does conditional-call-chain.tsx depend on?
conditional-call-chain.tsx imports 2 module(s): react, shared-runtime.
Where is conditional-call-chain.tsx in the architecture?
conditional-call-chain.tsx is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/inner-function/nullable-objects/assume-invoked/conditional-call-chain.tsx (domain: TestingUtilities, subdomain: Fixtures, directory: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/inner-function/nullable-objects/assume-invoked).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free