Home
last modified time | relevance | path

Searched refs:errors (Results 1 – 25 of 481) sorted by relevance

12345678910>>...20

/expo/packages/@expo/cli/src/start/server/webpack/
H A Dcompile.ts12 const { errors, warnings } = formatWebpackMessages( constant
13 stats.toJson({ all: false, warnings: true, errors: true })
15 if (errors?.length) {
18 if (errors.length > 1) {
19 errors.length = 1;
21 throw new CommandError('WEBPACK_BUNDLE', errors.join('\n\n'));
30 return { errors, warnings };
H A DformatWebpackMessages.ts115 const formattedErrors = json?.errors?.map(formatMessage);
117 const result = { errors: formattedErrors, warnings: formattedWarnings };
118 if (result.errors?.some(isLikelyASyntaxError)) {
120 result.errors = result.errors.filter(isLikelyASyntaxError);
/expo/packages/expo-in-app-purchases/build/
H A DInAppPurchases.js6 const errors = { variable
24 throw new ConnectionError(errors.ALREADY_CONNECTED);
72 throw new ConnectionError(errors.NOT_CONNECTED);
95 throw new ConnectionError(errors.NOT_CONNECTED);
132 throw new ConnectionError(errors.NOT_CONNECTED);
230 throw new ConnectionError(errors.NOT_CONNECTED);
285 throw new ConnectionError(errors.ALREADY_DISCONNECTED);
/expo/packages/@expo/cli/src/utils/tsconfig/
H A DevaluateTsConfig.ts27 if (jsonFileContents.errors) {
29 jsonFileContents.errors = jsonFileContents.errors.filter(({ code }) => code !== 18003);
32 if (jsonFileContents.errors?.length) {
33 throw new Error(ts.formatDiagnostic(jsonFileContents.errors[0], formatDiagnosticsHost));
/expo/packages/expo-in-app-purchases/src/
H A DInAppPurchases.ts31 const errors = { constant
52 throw new ConnectionError(errors.ALREADY_CONNECTED);
104 throw new ConnectionError(errors.NOT_CONNECTED);
131 throw new ConnectionError(errors.NOT_CONNECTED);
172 throw new ConnectionError(errors.NOT_CONNECTED);
282 throw new ConnectionError(errors.NOT_CONNECTED);
339 throw new ConnectionError(errors.ALREADY_DISCONNECTED);
/expo/packages/@expo/cli/src/start/server/
H A DopenPlatforms.ts20 const errors = results constant
24 if (errors.length) {
26 const isEscapedError = errors.some((error: any) => error.code === 'ABORTED');
30 throw errors[0];
/expo/packages/@expo/metro-runtime/src/error-overlay/toast/
H A DErrorToastContainer.web.tsx51 const errors = useMemo(
68 {errors.length > 0 && (
70 log={errors[errors.length - 1]}
72 totalLogCount={errors.length}
73 onPressOpen={() => openLog(errors[errors.length - 1])}
/expo/packages/@expo/metro-runtime/build/error-overlay/toast/
H A DErrorToastContainer.web.js68 …const errors = (0, react_1.useMemo)(() => logs.filter((log) => log.level === 'error' || log.level …
71errors.length > 0 && (react_1.default.createElement(ErrorToast_1.ErrorToast, { log: errors[errors.…
/expo/packages/expo-modules-core/src/__tests__/__snapshots__/
H A Ddeprecate-test.ts.snap.ios3 exports[`deprecate errors throws a deprecation error after expiration 1`] = `"expo-modules-core: \`…
5 exports[`deprecate errors throws a deprecation error without expiration 1`] = `"expo-modules-core: …
7 exports[`deprecate errors throws an error with the replacement 1`] = `"expo-modules-core: \`foo\` h…
9 exports[`deprecate errors throws an error with the replacement after the expiration 1`] = `"expo-mo…
H A Ddeprecate-test.ts.snap.android3 exports[`deprecate errors throws a deprecation error after expiration 1`] = `"expo-modules-core: \`…
5 exports[`deprecate errors throws a deprecation error without expiration 1`] = `"expo-modules-core: …
7 exports[`deprecate errors throws an error with the replacement 1`] = `"expo-modules-core: \`foo\` h…
9 exports[`deprecate errors throws an error with the replacement after the expiration 1`] = `"expo-mo…
H A Ddeprecate-test.ts.snap.node3 exports[`deprecate errors throws a deprecation error after expiration 1`] = `"expo-modules-core: \`…
5 exports[`deprecate errors throws a deprecation error without expiration 1`] = `"expo-modules-core: …
7 exports[`deprecate errors throws an error with the replacement 1`] = `"expo-modules-core: \`foo\` h…
9 exports[`deprecate errors throws an error with the replacement after the expiration 1`] = `"expo-mo…
H A Ddeprecate-test.ts.snap.web3 exports[`deprecate errors throws a deprecation error after expiration 1`] = `"expo-modules-core: \`…
5 exports[`deprecate errors throws a deprecation error without expiration 1`] = `"expo-modules-core: …
7 exports[`deprecate errors throws an error with the replacement 1`] = `"expo-modules-core: \`foo\` h…
9 exports[`deprecate errors throws an error with the replacement after the expiration 1`] = `"expo-mo…
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/CoreModules/
H A DABI47_0_0RCTAsyncLocalStorage.mm41 if (error && errors) {
42 if (!*errors) {
43 *errors = [NSMutableArray new];
45 [*errors addObject:error];
322 NSMutableArray<NSDictionary *> *errors;
341 NSMutableArray<NSDictionary *> *errors;
347 [self _writeManifest:&errors];
360 NSMutableArray<NSDictionary *> *errors;
382 [self _writeManifest:&errors];
394 NSMutableArray<NSDictionary *> *errors;
[all …]
/expo/packages/expo-modules-core/build/errors/
H A DCodedError.js.map1errors/CodedError.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,OAAO,UAAW,SAAQ,KAAK;IACnC,IAA…
/expo/packages/html-elements/src/primitives/__tests__/
H A DcreateDevView.test.tsx22 // Ensure no errors
39 // Ensure no errors
47 // Ensure no errors
/expo/docs/pages/routing/
H A Derror-handling.mdx3 description: Learn how to handle unmatched routes and errors in your app when using Expo Router.
11 This guide specifies how to handle unmatched routes and errors in your app when using Expo Router.
35 alt="Using ErrorBoundary in Expo Router to catch errors in a route component."
40 …format component-level errors using [React Error Boundaries](https://react.dev/reference/react/Com…
96 … develop with errors. Currently, it shows for `console.error` and `console.warn`. However, it shou…
/expo/apps/native-component-list/src/api/
H A DregisterForPushNotificationsAsync.ts37 if (result.errors) {
38 for (const error of result.errors) {
/expo/ios/vendored/unversioned/@react-native-async-storage/async-storage/ios/
H A DRNCAsyncStorage.m63 if (error && errors) {
64 if (!*errors) {
65 *errors = [NSMutableArray new];
67 [*errors addObject:error];
81 return errors;
707 [self _writeManifest:&errors];
709 callback(@[RCTNullIfNil(errors)]);
764 [self _writeManifest:&errors];
766 callback(@[RCTNullIfNil(errors)]);
809 [self _writeManifest:&errors];
[all …]
/expo/ios/vendored/sdk48/@react-native-async-storage/async-storage/ios/
H A DABI48_0_0RNCAsyncStorage.m63 if (error && errors) {
64 if (!*errors) {
65 *errors = [NSMutableArray new];
67 [*errors addObject:error];
73 NSMutableArray<NSDictionary *> *errors;
81 return errors;
607 NSMutableArray<NSDictionary *> *errors;
701 NSMutableArray<NSDictionary *> *errors;
707 [self _writeManifest:&errors];
764 [self _writeManifest:&errors];
[all …]
/expo/ios/vendored/sdk49/@react-native-async-storage/async-storage/ios/
H A DABI49_0_0RNCAsyncStorage.m63 if (error && errors) {
64 if (!*errors) {
65 *errors = [NSMutableArray new];
67 [*errors addObject:error];
73 NSMutableArray<NSDictionary *> *errors;
81 return errors;
607 NSMutableArray<NSDictionary *> *errors;
701 NSMutableArray<NSDictionary *> *errors;
707 [self _writeManifest:&errors];
764 [self _writeManifest:&errors];
[all …]
/expo/home/api/
H A DAPIV2Client.ts57 if (Array.isArray(body.errors) && body.errors.length > 0) {
58 const responseError = body.errors[0];
/expo/packages/expo-intent-launcher/android/src/main/java/expo/modules/intentlauncher/exceptions/
H A DActivityAlreadyStartedException.kt3 import expo.modules.core.errors.CodedException
/expo/android/expoview/src/main/java/host/exp/exponent/notifications/exceptions/
H A DUnableToScheduleException.kt3 import expo.modules.core.errors.CodedException
/expo/packages/expo-modules-core/android/src/main/java/expo/modules/core/errors/
H A DContextDestroyedException.kt1 package expo.modules.core.errors
H A DModuleDestroyedException.kt1 package expo.modules.core.errors

12345678910>>...20