Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
test
/
e2e
/
resources
/
sources
/
error-with-sourcemap.js
blob: 1b78915357c2782b8022d46251be050901f216d1 [
file
] [
log
] [
blame
]
"use strict"
;
class
MyError
extends
Error
{
get
name
()
{
return
'MyError'
;
}
}
function
inner
()
{
const
e
=
new
MyError
();
return
e
.
stack
;
}
function
outer
()
{
return
inner
();
}
console
.
log
(
outer
());
//# sourceMappingURL=error-with-sourcemap.js.map