(a)
| 781 | BeginTest("Closure with Inferred Name 3"); |
| 782 | |
| 783 | function closure_3_inferred_name(a) { |
| 784 | let foo = {}; |
| 785 | foo.bar = function(b) { |
| 786 | foo.baz = function() { |
| 787 | debugger; |
| 788 | return a+b; |
| 789 | } |
| 790 | return foo.baz; |
| 791 | }; |
| 792 | return foo.bar; |
| 793 | } |
| 794 | |
| 795 | listener_delegate = function(exec_state) { |
| 796 | CheckScopeChain([debug.ScopeType.Local, |
no outgoing calls
no test coverage detected
searching dependent graphs…