Home / File/ hoisting-simple-function-expression.js — react Source File

hoisting-simple-function-expression.js — react Source File

Architecture documentation for hoisting-simple-function-expression.js, a javascript file in the react codebase.

Entity Profile

Relationship Graph

Source Code

function hoisting() {
  const foo = () => {
    return bar();
  };
  const bar = () => {
    return 1;
  };

  return foo(); // OK: bar's value is only accessed outside of its TDZ
}

export const FIXTURE_ENTRYPOINT = {
  fn: hoisting,
  params: [],
  isComponent: false,
};

Subdomains

Functions

Frequently Asked Questions

What does hoisting-simple-function-expression.js do?
hoisting-simple-function-expression.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 hoisting-simple-function-expression.js?
hoisting-simple-function-expression.js defines 1 function(s): hoisting.
Where is hoisting-simple-function-expression.js in the architecture?
hoisting-simple-function-expression.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/hoisting-simple-function-expression.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