27ceb7499a
This is to fix test262 tests which expect that there is no arguments object. Bug: v8:7186 Cq-Include-Trybots: luci.v8.try:v8_linux_noi18n_rel_ng Change-Id: I56205c29609666dc832297e4d36a4d487eae36cc Reviewed-on: https://chromium-review.googlesource.com/c/1291469 Reviewed-by: Peter Marshall <petermarshall@chromium.org> Reviewed-by: Mathias Bynens <mathias@chromium.org> Commit-Queue: Yang Guo <yangguo@chromium.org> Cr-Commit-Position: refs/heads/master@{#56890}
23 lines
476 B
JavaScript
23 lines
476 B
JavaScript
// Copyright 2017 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: --allow-natives-syntax
|
|
|
|
function baz(obj, store) {
|
|
if (store === true) obj[0] = 1;
|
|
}
|
|
function bar(store) {
|
|
baz(Object.prototype, store);
|
|
}
|
|
bar(false);
|
|
bar(false);
|
|
%OptimizeFunctionOnNextCall(bar);
|
|
bar(true);
|
|
|
|
function foo() { [].push(); }
|
|
foo();
|
|
foo();
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
foo();
|