Sign in
webkit
/
WebKit
/
5969b6f1f74632b1546edb27bd956b187c2c3d52
/
.
/
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
();
}