(a)
| 751 | BeginTest("Closure with Inferred Name 2"); |
| 752 | |
| 753 | function closure_2_inferred_name(a) { |
| 754 | let foo = {}; |
| 755 | function FooBar(b) { |
| 756 | foo.baz = function() { |
| 757 | debugger; |
| 758 | return a+b; |
| 759 | } |
| 760 | return foo.baz; |
| 761 | }; |
| 762 | return FooBar; |
| 763 | } |
| 764 | |
| 765 | listener_delegate = function(exec_state) { |
| 766 | CheckScopeChain([debug.ScopeType.Local, |