-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathindex.js
More file actions
162 lines (140 loc) · 4.5 KB
/
index.js
File metadata and controls
162 lines (140 loc) · 4.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
export function get(belowFn) {
const oldLimit = Error.stackTraceLimit;
Error.stackTraceLimit = Infinity;
const dummyObject = {};
const v8Handler = Error.prepareStackTrace;
Error.prepareStackTrace = function(dummyObject, v8StackTrace) {
return v8StackTrace;
};
Error.captureStackTrace(dummyObject, belowFn || get);
const v8StackTrace = dummyObject.stack;
Error.prepareStackTrace = v8Handler;
Error.stackTraceLimit = oldLimit;
return v8StackTrace;
}
export function parse(err) {
if (!err.stack) {
return [];
}
const allLines = err.stack.split('\n');
const frames = [];
// If the first line looks like a source location (path:line or path:line:col)
// rather than an error message, capture it as the first frame. V8 prepends
// source locations for CJS SyntaxError stacks. Two guards prevent false positives:
// 1. /:\s/ — error messages contain ": " (colon+space); source paths don't.
// 2. Scheme exclusion — network URLs and node: specifiers are not file paths.
// file:// is intentionally allowed.
const firstLine = allLines[0];
const sourceLocMatch = firstLine && firstLine.match(/^(.+?):(\d+)(?::(\d+))?$/);
if (sourceLocMatch && !firstLine.match(/:\s/) && !firstLine.match(/^(?:https?|ftp|data|blob):\/\//) && !firstLine.startsWith('node:')) {
const parsedLine = parseInt(sourceLocMatch[2], 10);
const parsedCol = parseInt(sourceLocMatch[3], 10);
frames.push(createParsedCallSite({
fileName: sourceLocMatch[1],
lineNumber: Number.isNaN(parsedLine) ? null : parsedLine,
functionName: null,
typeName: null,
methodName: null,
columnNumber: Number.isNaN(parsedCol) ? null : parsedCol,
'native': false,
}));
}
const lines = allLines.slice(1);
lines.forEach(function(line) {
if (line.match(/^\s*[-]{4,}$/)) {
frames.push(createParsedCallSite({
fileName: line,
lineNumber: null,
functionName: null,
typeName: null,
methodName: null,
columnNumber: null,
'native': null,
}));
return;
}
const lineMatch = line.match(/at (?:(.+?)\s+\()?(?:(.+?):(\d+)(?::(\d+))?|([^)]+))\)?/);
if (!lineMatch) {
return;
}
let object = null;
let method = null;
let functionName = null;
let typeName = null;
let methodName = null;
let isNative = (lineMatch[5] === 'native');
if (lineMatch[1]) {
functionName = lineMatch[1];
let methodStart = functionName.lastIndexOf('.');
if (functionName[methodStart-1] == '.')
methodStart--;
if (methodStart > 0) {
object = functionName.substr(0, methodStart);
method = functionName.substr(methodStart + 1);
const objectEnd = object.indexOf('.Module');
if (objectEnd > 0) {
functionName = functionName.substr(objectEnd + 1);
object = object.substr(0, objectEnd);
}
}
}
if (method) {
typeName = object;
methodName = method;
}
if (method === '<anonymous>') {
methodName = null;
functionName = null;
}
const parsedLine = parseInt(lineMatch[3], 10);
const parsedCol = parseInt(lineMatch[4], 10);
const properties = {
fileName: lineMatch[2] || null,
lineNumber: Number.isNaN(parsedLine) ? null : parsedLine,
functionName: functionName,
typeName: typeName,
methodName: methodName,
columnNumber: Number.isNaN(parsedCol) ? null : parsedCol,
'native': isNative,
};
frames.push(createParsedCallSite(properties));
});
return frames;
}
function CallSite(properties) {
for (const property in properties) {
this[property] = properties[property];
}
}
const strProperties = [
'this',
'typeName',
'functionName',
'methodName',
'fileName',
'lineNumber',
'columnNumber',
'function',
'evalOrigin'
];
const boolProperties = [
'topLevel',
'eval',
'native',
'constructor'
];
strProperties.forEach(function (property) {
CallSite.prototype[property] = null;
CallSite.prototype['get' + property[0].toUpperCase() + property.substr(1)] = function () {
return this[property];
}
});
boolProperties.forEach(function (property) {
CallSite.prototype[property] = false;
CallSite.prototype['is' + property[0].toUpperCase() + property.substr(1)] = function () {
return this[property];
}
});
function createParsedCallSite(properties) {
return new CallSite(properties);
}