blob: 30b3f219e9a1a733fefdac8b92a1e01b6be58f7e [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// 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
6function target() {};
7
8var proxy = new Proxy(target, {
9 get() {
10 // Reset the initial map of the target.
11 target.prototype = 123;
12 }});
13
14new proxy();