[Webkit-unassigned] [Bug 158210] New: Web Inspector: Wrong function name next to scope

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon May 30 10:21:44 PDT 2016


https://bugs.webkit.org/show_bug.cgi?id=158210

            Bug ID: 158210
           Summary: Web Inspector: Wrong function name next to scope
    Classification: Unclassified
           Product: WebKit
           Version: WebKit Local Build
          Hardware: All
                OS: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Web Inspector
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: sbarati at apple.com
                CC: bburg at apple.com, graouts at webkit.org,
                    joepeck at webkit.org, mattbaker at apple.com,
                    nvasilyev at apple.com, timothy at apple.com,
                    webkit-bug-importer at group.apple.com

Created attachment 280102
  --> https://bugs.webkit.org/attachment.cgi?id=280102&action=review
image of bug

I saw this repro on the STP before ShadowChicken.
It also repros with ShadowChicken. I don't think the bug is ShadowChicken related.

run this file:
```
function foo() {
    let x = 10;
    bar();
    return baz();
}
function bar() {
    let z = 40;
    debugger;
    return 20;
}
foo();
```
And you will stop at the 'debugger' inside bar.
Show the scope chain for 'bar' to the right.
You will see the view for 'bar's scope chain
looks as follows:
`Closure Variables (foo)`
`z : 40`

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160530/c8aa331b/attachment.html>


More information about the webkit-unassigned mailing list