Lines Matching refs:cause
1246 let cause;
1248 ({ cause } = err);
1250 // If 'cause' is a getter that throws, ignore it.
1253 // Remove stack frames identical to frames in cause.
1254 if (cause != null && isError(cause)) {
1255 const causeStack = getStackString(cause);
1262 const msg = ` ... ${skipped} lines matching cause stack trace ...`;
1373 if ('cause' in err &&
1374 (keys.length === 0 || !ArrayPrototypeIncludes(keys, 'cause'))) {
1375 ArrayPrototypePush(keys, 'cause');