Home / File/ try-catch-ternary-expression.js — react Source File

try-catch-ternary-expression.js — react Source File

Architecture documentation for try-catch-ternary-expression.js, a javascript file in the react codebase.

Entity Profile

Relationship Graph

Source Code

function Component(props) {
  let result;
  try {
    // fallback.value is accessed WITHIN the ternary's false branch
    result = props.cond ? props.a : props.fallback.value;
  } catch (e) {
    result = 'error';
  }
  return result;
}

export const FIXTURE_ENTRYPOINT = {
  fn: Component,
  params: [{cond: true, a: 'hello', fallback: {value: 'world'}}],
  sequentialRenders: [
    {cond: true, a: 'hello', fallback: {value: 'world'}},
    {cond: true, a: 'hello', fallback: {value: 'world'}},
    {cond: false, a: 'hello', fallback: {value: 'world'}},
    {cond: true, a: 'foo', fallback: {value: 'bar'}},
    {cond: false, a: 'foo', fallback: null}, // errors because fallback.value throws WITHIN the ternary
  ],
};

Subdomains

Functions

Frequently Asked Questions

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