| // Copyright 2016 the V8 project authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| // Flags: --lazy-inner-functions |
| (function TestLazyInnerFunctionCallsEval() { |
| var i = (function eager_outer() { |
| var outer_var = 41; // Should be context-allocated |
| return eval("outer_var"); |
| (function TestLazyInnerFunctionDestructuring() { |
| var i = (function eager_outer() { |
| var outer_var = 41; // Should be context-allocated |
| // This introduces b and refers to outer_var. |
| var {outer_var : b} = {outer_var}; |