blob: 38a35b73f12705c5976012221c191148227e6165 [file] [log] [blame]
Ben Murdochc5610432016-08-08 18:44:38 +01001// Copyright 2016 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ben Murdoch61f157c2016-09-16 13:49:30 +01005// Flags: --allow-natives-syntax
Ben Murdochc5610432016-08-08 18:44:38 +01006
7function F() {}
8var f = new F
9
10function foo(x) { return x instanceof F };
11%OptimizeFunctionOnNextCall(foo);
12assertFalse(foo(1));
13
14var proto = Object.getPrototypeOf(F);
15Object.setPrototypeOf(F, null);
16F[Symbol.hasInstance] = function(v) { return true };
17Object.setPrototypeOf(F, proto);
18
19assertTrue(foo(1));