UNPKG

527 BPlain TextView Raw
1/**
2 * @license
3 * Copyright 2022 Google Inc.
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/**
8 * A unique key for {@link IsolatedWorldChart} to denote the default world.
9 * Execution contexts are automatically created in the default world.
10 *
11 * @internal
12 */
13export const MAIN_WORLD = Symbol('mainWorld');
14/**
15 * A unique key for {@link IsolatedWorldChart} to denote the puppeteer world.
16 * This world contains all puppeteer-internal bindings/code.
17 *
18 * @internal
19 */
20export const PUPPETEER_WORLD = Symbol('puppeteerWorld');