Sign in
webkit
/
WebKit
/
5ee61c06e54d41c4ffb65d69f6b4605c35afb105
/
.
/
LayoutTests
/
inspector
/
model
/
resources
/
function-name-scopes.js
blob: 4e8696bd16483706e07b05b1f7dabe2873c843d3 [
file
] [
log
] [
blame
]
function
testFunctionNameScope1
()
{
(
function
functionName
()
{
debugger
;
})();
}
function
testFunctionNameScope2
()
{
(
class
MyClass
{
static
staticMethod
()
{
debugger
;
}
}).
staticMethod
();
}