Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
90
node_modules/next/dist/client/components/react-dev-overlay/utils/node-stack-frames.js
generated
vendored
Normal file
90
node_modules/next/dist/client/components/react-dev-overlay/utils/node-stack-frames.js
generated
vendored
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
getFilesystemFrame: null,
|
||||
getServerError: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
getFilesystemFrame: function() {
|
||||
return getFilesystemFrame;
|
||||
},
|
||||
getServerError: function() {
|
||||
return getServerError;
|
||||
}
|
||||
});
|
||||
const _stacktraceparser = require("next/dist/compiled/stacktrace-parser");
|
||||
const _errorsource = require("../../../../shared/lib/error-source");
|
||||
function getFilesystemFrame(frame) {
|
||||
const f = {
|
||||
...frame
|
||||
};
|
||||
if (typeof f.file === 'string') {
|
||||
if (// Posix:
|
||||
f.file.startsWith('/') || // Win32:
|
||||
/^[a-z]:\\/i.test(f.file) || // Win32 UNC:
|
||||
f.file.startsWith('\\\\')) {
|
||||
f.file = "file://" + f.file;
|
||||
}
|
||||
}
|
||||
return f;
|
||||
}
|
||||
function getServerError(error, type) {
|
||||
if (error.name === 'TurbopackInternalError') {
|
||||
// If this is an internal Turbopack error we shouldn't show internal details
|
||||
// to the user. These are written to a log file instead.
|
||||
const turbopackInternalError = Object.defineProperty(new Error('An unexpected Turbopack error occurred. Please see the output of `next dev` for more details.'), "__NEXT_ERROR_CODE", {
|
||||
value: "E167",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
(0, _errorsource.decorateServerError)(turbopackInternalError, type);
|
||||
return turbopackInternalError;
|
||||
}
|
||||
let n;
|
||||
try {
|
||||
throw Object.defineProperty(new Error(error.message), "__NEXT_ERROR_CODE", {
|
||||
value: "E394",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
} catch (e) {
|
||||
n = e;
|
||||
}
|
||||
n.name = error.name;
|
||||
try {
|
||||
n.stack = n.toString() + "\n" + (0, _stacktraceparser.parse)(error.stack).map(getFilesystemFrame).map((f)=>{
|
||||
let str = " at " + f.methodName;
|
||||
if (f.file) {
|
||||
let loc = f.file;
|
||||
if (f.lineNumber) {
|
||||
loc += ":" + f.lineNumber;
|
||||
if (f.column) {
|
||||
loc += ":" + f.column;
|
||||
}
|
||||
}
|
||||
str += " (" + loc + ")";
|
||||
}
|
||||
return str;
|
||||
}).join('\n');
|
||||
} catch (e) {
|
||||
n.stack = error.stack;
|
||||
}
|
||||
(0, _errorsource.decorateServerError)(n, type);
|
||||
return n;
|
||||
}
|
||||
|
||||
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
|
||||
Object.defineProperty(exports.default, '__esModule', { value: true });
|
||||
Object.assign(exports.default, exports);
|
||||
module.exports = exports.default;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=node-stack-frames.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue