Add Proxy.revocable built-in test

This commit is contained in:
Alexey Shvayka 2020-04-14 21:42:42 +03:00 committed by Rick Waldron
parent fadb9073d3
commit c31133b195
1 changed files with 18 additions and 0 deletions

View File

@ -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);