Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// 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
function lazy_inner() {
return eval("outer_var");
}
return lazy_inner;
})();
assertEquals(41, i());
(function TestLazyInnerFunctionDestructuring() {
// This introduces b and refers to outer_var.
var {outer_var : b} = {outer_var};
return b;