blob: 80bbdcd192eda42a9e2c678569339ae69f19322d [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
5// Flags: --allow-natives-syntax --harmony-instanceof
6
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));