Home
last modified time | relevance | path

Searched refs:urlCreator (Results 1 – 5 of 5) sorted by relevance

/expo/packages/@expo/cli/src/start/server/
H A DBundlerDevServer.ts101 protected urlCreator?: UrlCreator | null = null;
125 const urlCreator = this.getUrlCreator(); constant
127 constructUrl: urlCreator.constructUrl.bind(urlCreator),
173 this.urlCreator = this.getUrlCreator(options);
340 if (!this.urlCreator) {
342 this.urlCreator = new UrlCreator(options.location, {
347 return this.urlCreator;
462 if (!port || !this.urlCreator) {
470 getCustomRuntimeUrl: this.urlCreator.constructDevClientUrl.bind(this.urlCreator),
H A DDevServerManager.ts147 const urlCreator = devServer.getUrlCreator(); constant
148 urlCreator.defaults ??= {};
149 urlCreator.defaults.scheme = nextScheme;
/expo/packages/@expo/cli/src/start/server/__tests__/
H A DBundlerDevServer-test.ts56 this.urlCreator = new UrlCreator(
91 return this.urlCreator;
273 const urlCreator = server.getPublicUrlCreator()!; constant
274 urlCreator.constructLoadingUrl = jest.fn(urlCreator.constructLoadingUrl);
283 expect(urlCreator.constructLoadingUrl).toBeCalledTimes(3);
/expo/packages/@expo/cli/src/start/server/metro/
H A DMetroBundlerDevServer.ts340 this.urlCreator = this.getUrlCreator(options);
388 return this.urlCreator?.constructDevClientUrl();
390 return this.urlCreator?.constructUrl({
/expo/packages/@expo/cli/src/start/server/webpack/
H A DWebpackBundlerDevServer.ts162 this.urlCreator = this.getUrlCreator({