Home / File/ allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js — react Source File

allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js — react Source File

Architecture documentation for allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js, a javascript file in the react codebase. 2 imports, 0 dependents.

File javascript TestingUtilities Fixtures 2 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  c12e0566_4010_51ea_c192_1a854e014bbf["allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js"]
  ac587885_e294_a1e9_b13f_5e7b920fdb42["react"]
  c12e0566_4010_51ea_c192_1a854e014bbf --> ac587885_e294_a1e9_b13f_5e7b920fdb42
  006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"]
  c12e0566_4010_51ea_c192_1a854e014bbf --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05
  style c12e0566_4010_51ea_c192_1a854e014bbf fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import {useRef} from 'react';
import {Stringify} from 'shared-runtime';

function Component(props) {
  const ref = useRef(props.value);
  const object = {};
  object.foo = () => ref.current;
  return <Stringify object={object} shouldInvokeFns={true} />;
}

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

Subdomains

Functions

Dependencies

  • react
  • shared-runtime

Frequently Asked Questions

What does allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js do?
allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.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 allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js?
allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js defines 1 function(s): Component.
What does allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js depend on?
allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js imports 2 module(s): react, shared-runtime.
Where is allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js in the architecture?
allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/allow-assigning-ref-accessing-function-to-object-property-if-not-mutated.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