blob: 4e8696bd16483706e07b05b1f7dabe2873c843d3 [file] [log] [blame]
function testFunctionNameScope1() {
(function functionName() {
debugger;
})();
}
function testFunctionNameScope2() {
(class MyClass {
static staticMethod() {
debugger;
}
}).staticMethod();
}