(a)
| 727 | BeginTest("Closure with Inferred Name 1"); |
| 728 | |
| 729 | function closure_1_inferred_name(a) { |
| 730 | let foo = {}; |
| 731 | foo.bar = function() { |
| 732 | debugger; |
| 733 | return a; |
| 734 | }; |
| 735 | return foo.bar; |
| 736 | } |
| 737 | |
| 738 | listener_delegate = function(exec_state) { |
| 739 | CheckScopeChain([debug.ScopeType.Local, |