Sign in
webkit
/
WebKit
/
410be4ca7055be9179c217c85d9a7735750cf16d
/
.
/
LayoutTests
/
inspector
/
debugger
/
tail-deleted-frames
/
resources
/
tail-deleted-frames-scopes.js
blob: 55e1d18826432ca790f5454644d66b7549dffe75 [
file
] [
log
] [
blame
]
"use strict"
;
function
a
()
{
let x
=
20
;
debugger
;
return
x
;
}
function
b
()
{
let y
=
40
;
return
a
();
}
function
c
()
{
let z
=
60
;
return
b
();
}
function
startABC
()
{
c
();
}