mirror of https://github.com/tc39/test262.git
Add "proxy-missing-checks" feature tag (#2195)
This commit is contained in:
parent
74e0cae407
commit
8984ea8080
|
@ -7,6 +7,10 @@
|
||||||
#
|
#
|
||||||
# https://github.com/tc39/process-document
|
# https://github.com/tc39/process-document
|
||||||
|
|
||||||
|
# Missing checks in Proxy internal methods
|
||||||
|
# https://github.com/tc39/ecma262/pull/666
|
||||||
|
proxy-missing-checks
|
||||||
|
|
||||||
# Promise.allSettled
|
# Promise.allSettled
|
||||||
# https://github.com/tc39/proposal-promise-allSettled
|
# https://github.com/tc39/proposal-promise-allSettled
|
||||||
Promise.allSettled
|
Promise.allSettled
|
||||||
|
|
|
@ -16,7 +16,7 @@ info: |
|
||||||
i. If Desc has a [[Writable]] field and Desc.[[Writable]] is
|
i. If Desc has a [[Writable]] field and Desc.[[Writable]] is
|
||||||
false, throw a TypeError exception.
|
false, throw a TypeError exception.
|
||||||
...
|
...
|
||||||
features: [Proxy, Reflect]
|
features: [Proxy, Reflect, proxy-missing-checks]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var trapCalls = 0;
|
var trapCalls = 0;
|
||||||
|
|
|
@ -12,7 +12,7 @@ info: |
|
||||||
13. Let extensibleTarget be ? IsExtensible(target).
|
13. Let extensibleTarget be ? IsExtensible(target).
|
||||||
14. If extensibleTarget is false, throw a TypeError exception.
|
14. If extensibleTarget is false, throw a TypeError exception.
|
||||||
...
|
...
|
||||||
features: [Proxy, Reflect]
|
features: [Proxy, Reflect, proxy-missing-checks]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var trapCalls = 0;
|
var trapCalls = 0;
|
||||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
||||||
false, then
|
false, then
|
||||||
i. If targetDesc.[[Writable]] is true, throw a TypeError exception.
|
i. If targetDesc.[[Writable]] is true, throw a TypeError exception.
|
||||||
...
|
...
|
||||||
features: [Proxy]
|
features: [Proxy, proxy-missing-checks]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var trapCalls = 0;
|
var trapCalls = 0;
|
||||||
|
|
Loading…
Reference in New Issue