Home
last modified time | relevance | path

Searched refs:loadBundleAsync (Results 1 – 10 of 10) sorted by relevance

/expo/packages/@expo/metro-runtime/build/async-require/
H A DloadBundle.js3 exports.loadBundleAsync = void 0;
19 async function loadBundleAsync(bundlePath) { function
45 exports.loadBundleAsync = loadBundleAsync;
H A DloadBundle.d.ts6 export declare function loadBundleAsync(bundlePath: string): Promise<void>; function
H A DbuildAsyncRequire.js.map1loadBundleAsync } from './loadBundle';\n\n/**\n * Must satisfy the requirements of the Metro bundl…
H A DbuildAsyncRequire.js18 const promise = (0, loadBundle_1.loadBundleAsync)(path).catch((error) => {
H A DloadBundle.js.map1 …uld be `Bacon.bundle?params=from-metro`.\n */\nexport async function loadBundleAsync(bundlePath: s…
/expo/packages/@expo/metro-runtime/src/async-require/__tests__/
H A DbuildAsyncRequire.test.ts2 import { loadBundleAsync } from '../loadBundle';
8 loadBundleAsync: jest.fn(async () => {}),
32 expect(loadBundleAsync).toBeCalledWith('/bacon.bundle?platform=ios');
H A DloadBundle.test.ios.ts4 import { loadBundleAsync } from '../loadBundle';
39 await loadBundleAsync(
54 loadBundleAsync(
71 await loadBundleAsync('/_expo/js/index.bundle');
H A DloadBundle.test.web.ts4 import { loadBundleAsync } from '../loadBundle';
24 await loadBundleAsync('/Second.bundle?modulesOnly=true');
33 await loadBundleAsync('/Second.bundle?modulesOnly=true');
/expo/packages/@expo/metro-runtime/src/async-require/
H A DbuildAsyncRequire.ts8 import { loadBundleAsync } from './loadBundle';
25 const promise = loadBundleAsync(path).catch((error) => {
H A DloadBundle.ts18 export async function loadBundleAsync(bundlePath: string): Promise<void> { function