2015-11-27 12:16:32 +00:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2016-03-21 19:39:16 +00:00
|
|
|
// Flags: --allow-natives-syntax
|
2015-11-27 12:16:32 +00:00
|
|
|
|
|
|
|
function CreateConstructableProxy(handler) {
|
2015-12-09 14:55:00 +00:00
|
|
|
return new Proxy(function(){}, handler);
|
2015-11-27 12:16:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
var prototype = { x: 1 };
|
|
|
|
var log = [];
|
|
|
|
|
|
|
|
var proxy = CreateConstructableProxy({
|
|
|
|
get(k) {
|
|
|
|
log.push("get trap");
|
|
|
|
return prototype;
|
|
|
|
}});
|
|
|
|
|
|
|
|
var o = Reflect.construct(Number, [100], proxy);
|
|
|
|
assertEquals(["get trap"], log);
|
|
|
|
assertTrue(Object.getPrototypeOf(o) === prototype);
|
|
|
|
assertEquals(100, Number.prototype.valueOf.call(o));
|
|
|
|
})();
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
var prototype = { x: 1 };
|
|
|
|
var log = [];
|
|
|
|
|
|
|
|
var proxy = CreateConstructableProxy({
|
|
|
|
get(k) {
|
|
|
|
log.push("get trap");
|
|
|
|
return 10;
|
|
|
|
}});
|
|
|
|
|
|
|
|
var o = Reflect.construct(Number, [100], proxy);
|
|
|
|
assertEquals(["get trap"], log);
|
2015-12-09 07:53:19 +00:00
|
|
|
assertTrue(Object.getPrototypeOf(o) === Number.prototype);
|
2015-11-27 12:16:32 +00:00
|
|
|
assertEquals(100, Number.prototype.valueOf.call(o));
|
|
|
|
})();
|
2015-11-27 21:44:27 +00:00
|
|
|
|
|
|
|
(function() {
|
|
|
|
var prototype = { x: 1 };
|
|
|
|
var log = [];
|
|
|
|
|
|
|
|
var proxy = CreateConstructableProxy({
|
|
|
|
get(k) {
|
|
|
|
log.push("get trap");
|
|
|
|
return prototype;
|
|
|
|
}});
|
|
|
|
|
|
|
|
var o = Reflect.construct(Function, ["return 1000"], proxy);
|
|
|
|
assertEquals(["get trap"], log);
|
|
|
|
assertTrue(Object.getPrototypeOf(o) === prototype);
|
|
|
|
assertEquals(1000, o());
|
|
|
|
})();
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
var prototype = { x: 1 };
|
|
|
|
var log = [];
|
|
|
|
|
|
|
|
var proxy = CreateConstructableProxy({
|
|
|
|
get(k) {
|
|
|
|
log.push("get trap");
|
|
|
|
return prototype;
|
|
|
|
}});
|
|
|
|
|
|
|
|
var o = Reflect.construct(Array, [1, 2, 3], proxy);
|
|
|
|
assertEquals(["get trap"], log);
|
|
|
|
assertTrue(Object.getPrototypeOf(o) === prototype);
|
|
|
|
assertEquals([1, 2, 3], o);
|
|
|
|
})();
|