Skip to content

Commit e610f1a

Browse files
committed
oops
1 parent 4e727ed commit e610f1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/src/compiler/errors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class InternalCompileError extends Error {
1414
*/
1515
constructor(code, message, position) {
1616
super(message);
17-
// this.stack = ''; // avoid unnecessary noise; don't set it as a class property or it becomes enumerable
17+
this.stack = ''; // avoid unnecessary noise; don't set it as a class property or it becomes enumerable
1818
// We want to extend from Error so that various bundler plugins properly handle it.
1919
// But we also want to share the same object shape with that of warnings, therefore
2020
// we create an instance of the shared class an copy over its properties.

0 commit comments

Comments
 (0)