Home / File/ reactivity-via-aliased-mutation-through-property-load.js — react Source File

reactivity-via-aliased-mutation-through-property-load.js — react Source File

Architecture documentation for reactivity-via-aliased-mutation-through-property-load.js, a javascript file in the react codebase.

Entity Profile

Relationship Graph

Source Code

function Component(props) {
  const x = {};
  const y = [];
  x.y = y;
  x.y.push(props.input);

  let z = 0;
  if (x.y[0]) {
    z = 1;
  }

  return [z];
}

export const FIXTURE_ENTRYPOINT = {
  fn: Component,
  params: [],
  sequentialRenders: [
    {input: true},
    {input: true},
    {input: false},
    {input: false},
    {input: true},
    {input: false},
    {input: true},
    {input: false},
  ],
};

Subdomains

Functions

Frequently Asked Questions

What does reactivity-via-aliased-mutation-through-property-load.js do?
reactivity-via-aliased-mutation-through-property-load.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 reactivity-via-aliased-mutation-through-property-load.js?
reactivity-via-aliased-mutation-through-property-load.js defines 1 function(s): Component.
Where is reactivity-via-aliased-mutation-through-property-load.js in the architecture?
reactivity-via-aliased-mutation-through-property-load.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/reactivity-via-aliased-mutation-through-property-load.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