Home / File/ cond-scope.js — react Source File

cond-scope.js — react Source File

Architecture documentation for cond-scope.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
  0b4b560a_c6ba_d953_6ac6_fffc809b276f["cond-scope.js"]
  006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"]
  0b4b560a_c6ba_d953_6ac6_fffc809b276f --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05
  style 0b4b560a_c6ba_d953_6ac6_fffc809b276f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

// Some reactive scopes are created within a conditional. If a child scope
// is within a conditional, its reactive dependencies should be propagated
// as conditionals
//
// In this test:
// ```javascript
// scope @0 (deps=[???] decls=[x]) {
//   const x = {};
//   if (foo) {
//     scope @1 (deps=[props.a.b] decls=[tmp]) {
//       const tmp = bar(props.a.b);
//     }
//     x.a = tmp;
//   }
// }
// return x;
// ```

import {CONST_FALSE, identity} from 'shared-runtime';

function useReactiveDepsInCondScope(props) {
  let x = {};
  if (CONST_FALSE) {
    let tmp = identity(props.a.b);
    x.a = tmp;
  }
  return x;
}

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

Subdomains

Dependencies

  • shared-runtime

Frequently Asked Questions

What does cond-scope.js do?
cond-scope.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 cond-scope.js?
cond-scope.js defines 1 function(s): useReactiveDepsInCondScope.
What does cond-scope.js depend on?
cond-scope.js imports 1 module(s): shared-runtime.
Where is cond-scope.js in the architecture?
cond-scope.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/reduce-reactive-deps/cond-scope.js (domain: TestingUtilities, subdomain: Fixtures, directory: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/reduce-reactive-deps).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free