Home / File/ context-variable-reassigned-outside-of-lambda.js — react Source File

context-variable-reassigned-outside-of-lambda.js — react Source File

Architecture documentation for context-variable-reassigned-outside-of-lambda.js, a javascript file in the react codebase. 1 imports, 0 dependents.

File javascript TestingUtilities Fixtures 1 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  d6854353_afdf_2f17_6cfe_a860e116a2e6["context-variable-reassigned-outside-of-lambda.js"]
  006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"]
  d6854353_afdf_2f17_6cfe_a860e116a2e6 --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05
  style d6854353_afdf_2f17_6cfe_a860e116a2e6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import {Stringify} from 'shared-runtime';

function Component(props) {
  let x = null;
  const callback = () => {
    console.log(x);
  };
  x = {};
  return <Stringify callback={callback} shouldInvokeFns={true} />;
}

export const FIXTURE_ENTRYPOINT = {
  fn: Component,
  params: [{}],
};

Subdomains

Functions

Dependencies

  • shared-runtime

Frequently Asked Questions

What does context-variable-reassigned-outside-of-lambda.js do?
context-variable-reassigned-outside-of-lambda.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 context-variable-reassigned-outside-of-lambda.js?
context-variable-reassigned-outside-of-lambda.js defines 1 function(s): Component.
What does context-variable-reassigned-outside-of-lambda.js depend on?
context-variable-reassigned-outside-of-lambda.js imports 1 module(s): shared-runtime.
Where is context-variable-reassigned-outside-of-lambda.js in the architecture?
context-variable-reassigned-outside-of-lambda.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/context-variable-reassigned-outside-of-lambda.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