summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-940361.js
blob: 28b21ad1454eb05426546daf07fae7256cf86570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2019 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

const re = /abc/;

// Move the test method one prototype up.
re.__proto__.__proto__.test = re.__proto__.test;
delete re.__proto__.test;

function foo(s) {
  return re.test(s);
}

assertTrue(foo('abc'));
assertTrue(foo('abc'));
%OptimizeFunctionOnNextCall(foo);
assertTrue(foo('abc'));
assertFalse(foo('ab'));