a023cb4dd9
Fixes #1284
Appearently, there is a use-case of stringifying the error in order to
evaluated its properties on another system. There was a regression
from 4.0.5 to 4.0.6 that the column-property of compilation errors
was not enumerable anymore in 4.0.6 (due to commit 20c965c) and
thus was not included in the output of "JSON.stringify".
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
|
|
const errorProps = ['description', 'fileName', 'lineNumber', 'message', 'name', 'number', 'stack'];
|
|
|
|
function Exception(message, node) {
|
|
let loc = node && node.loc,
|
|
line,
|
|
column;
|
|
if (loc) {
|
|
line = loc.start.line;
|
|
column = loc.start.column;
|
|
|
|
message += ' - ' + line + ':' + column;
|
|
}
|
|
|
|
let tmp = Error.prototype.constructor.call(this, message);
|
|
|
|
// Unfortunately errors are not enumerable in Chrome (at least), so `for prop in tmp` doesn't work.
|
|
for (let idx = 0; idx < errorProps.length; idx++) {
|
|
this[errorProps[idx]] = tmp[errorProps[idx]];
|
|
}
|
|
|
|
/* istanbul ignore else */
|
|
if (Error.captureStackTrace) {
|
|
Error.captureStackTrace(this, Exception);
|
|
}
|
|
|
|
try {
|
|
if (loc) {
|
|
this.lineNumber = line;
|
|
|
|
// Work around issue under safari where we can't directly set the column value
|
|
/* istanbul ignore next */
|
|
if (Object.defineProperty) {
|
|
Object.defineProperty(this, 'column', {
|
|
value: column,
|
|
enumerable: true
|
|
});
|
|
} else {
|
|
this.column = column;
|
|
}
|
|
}
|
|
} catch (nop) {
|
|
/* Ignore if the browser is very particular */
|
|
}
|
|
}
|
|
|
|
Exception.prototype = new Error();
|
|
|
|
export default Exception;
|