From c31133b1954ae631f1ab66107f2396a5780a3722 Mon Sep 17 00:00:00 2001 From: Alexey Shvayka Date: Tue, 14 Apr 2020 21:42:42 +0300 Subject: [PATCH] Add Proxy.revocable built-in test --- test/built-ins/Proxy/revocable/builtin.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/built-ins/Proxy/revocable/builtin.js diff --git a/test/built-ins/Proxy/revocable/builtin.js b/test/built-ins/Proxy/revocable/builtin.js new file mode 100644 index 0000000000..693cfc3395 --- /dev/null +++ b/test/built-ins/Proxy/revocable/builtin.js @@ -0,0 +1,18 @@ +// Copyright (C) 2020 Alexey Shvayka. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-proxy.revocable +description: > + Requirements for built-in functions, defined in introduction of chapter 17, + are satisfied. +includes: [isConstructor.js] +features: [Proxy, Reflect.construct] +---*/ + +assert(Object.isExtensible(Proxy.revocable)); +assert.sameValue(typeof Proxy.revocable, 'function'); +assert.sameValue(Object.prototype.toString.call(Proxy.revocable), '[object Function]'); +assert.sameValue(Object.getPrototypeOf(Proxy.revocable), Function.prototype); + +assert.sameValue(Proxy.revocable.hasOwnProperty('prototype'), false); +assert.sameValue(isConstructor(Proxy.revocable), false);