Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Proxy object #1664

Merged
merged 3 commits into from
Oct 14, 2021
Merged

Implement Proxy object #1664

merged 3 commits into from
Oct 14, 2021

Conversation

raskad
Copy link
Member

@raskad raskad commented Oct 12, 2021

This Pull Request fixes/closes #1300.

It changes the following:

  • Implement Proxy object
  • Fix various bugs

@raskad raskad added the builtins PRs and Issues related to builtins/intrinsics label Oct 12, 2021
@raskad raskad added this to the v0.14.0 milestone Oct 12, 2021
@raskad
Copy link
Member Author

raskad commented Oct 12, 2021

This should be spec compliant and feature complete. There are some tests in the Proxy suite failing, because they depend on other features.

Test262 conformance changes:

Test result main count PR count difference
Total 86,438 86,438 0
Passed 37,764 38,514 +750
Ignored 19,022 19,055 +33
Failed 29,652 28,869 -783
Panics 0 0 0
Conformance 43.69% 44.56% +0.87%
Fixed tests (750):
test/built-ins/TypedArrayConstructors/internals/HasProperty/abrupt-from-ordinary-has-parent-hasproperty.js [strict mode] (previously Failed)
test/built-ins/TypedArrayConstructors/internals/HasProperty/abrupt-from-ordinary-has-parent-hasproperty.js (previously Failed)
test/built-ins/TypedArrayConstructors/internals/HasProperty/BigInt/abrupt-from-ordinary-has-parent-hasproperty.js [strict mode] (previously Failed)
test/built-ins/TypedArrayConstructors/internals/HasProperty/BigInt/abrupt-from-ordinary-has-parent-hasproperty.js (previously Failed)
test/built-ins/TypedArrayConstructors/internals/Delete/indexed-value-ab-strict.js [strict mode] (previously Failed)
test/built-ins/TypedArrayConstructors/internals/Delete/key-is-out-of-bounds-strict.js [strict mode] (previously Failed)
test/built-ins/TypedArrayConstructors/internals/Delete/key-is-not-minus-zero-strict.js [strict mode] (previously Failed)
test/built-ins/TypedArrayConstructors/internals/Delete/BigInt/indexed-value-ab-strict.js [strict mode] (previously Failed)
test/built-ins/TypedArrayConstructors/internals/Delete/BigInt/key-is-out-of-bounds-strict.js [strict mode] (previously Failed)
test/built-ins/TypedArrayConstructors/internals/Delete/BigInt/key-is-not-minus-zero-strict.js [strict mode] (previously Failed)
test/built-ins/Reflect/ownKeys/return-abrupt-from-result.js [strict mode] (previously Failed)
test/built-ins/Reflect/ownKeys/return-abrupt-from-result.js (previously Failed)
test/built-ins/Reflect/deleteProperty/return-abrupt-from-result.js [strict mode] (previously Failed)
test/built-ins/Reflect/deleteProperty/return-abrupt-from-result.js (previously Failed)
test/built-ins/Reflect/getPrototypeOf/return-abrupt-from-result.js [strict mode] (previously Failed)
test/built-ins/Reflect/getPrototypeOf/return-abrupt-from-result.js (previously Failed)
test/built-ins/Reflect/preventExtensions/return-abrupt-from-result.js [strict mode] (previously Failed)
test/built-ins/Reflect/preventExtensions/return-abrupt-from-result.js (previously Failed)
test/built-ins/Reflect/preventExtensions/return-boolean-from-proxy-object.js [strict mode] (previously Failed)
test/built-ins/Reflect/preventExtensions/return-boolean-from-proxy-object.js (previously Failed)
test/built-ins/Reflect/isExtensible/return-abrupt-from-result.js [strict mode] (previously Failed)
test/built-ins/Reflect/isExtensible/return-abrupt-from-result.js (previously Failed)
test/built-ins/Reflect/getOwnPropertyDescriptor/return-abrupt-from-result.js [strict mode] (previously Failed)
test/built-ins/Reflect/getOwnPropertyDescriptor/return-abrupt-from-result.js (previously Failed)
test/built-ins/Reflect/defineProperty/return-abrupt-from-result.js [strict mode] (previously Failed)
test/built-ins/Reflect/defineProperty/return-abrupt-from-result.js (previously Failed)
test/built-ins/Reflect/has/return-abrupt-from-result.js [strict mode] (previously Failed)
test/built-ins/Reflect/has/return-abrupt-from-result.js (previously Failed)
test/built-ins/Reflect/setPrototypeOf/return-abrupt-from-result.js [strict mode] (previously Failed)
test/built-ins/Reflect/setPrototypeOf/return-abrupt-from-result.js (previously Failed)
test/built-ins/Function/prototype/Symbol.hasInstance/value-get-prototype-of-err.js [strict mode] (previously Failed)
test/built-ins/Function/prototype/Symbol.hasInstance/value-get-prototype-of-err.js (previously Failed)
test/built-ins/Function/prototype/toString/proxy-non-callable-throws.js [strict mode] (previously Failed)
test/built-ins/Function/prototype/toString/proxy-non-callable-throws.js (previously Failed)
test/built-ins/Symbol/auto-boxing-strict.js [strict mode] (previously Failed)
test/built-ins/Symbol/prototype/description/this-val-non-symbol.js [strict mode] (previously Failed)
test/built-ins/Symbol/prototype/description/this-val-non-symbol.js (previously Failed)
test/built-ins/Symbol/prototype/toString/toString-default-attributes-strict.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-null.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-null.js (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-number.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-number.js (previously Failed)
test/built-ins/Proxy/create-target-is-revoked-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-target-is-revoked-proxy.js (previously Failed)
test/built-ins/Proxy/function-prototype.js [strict mode] (previously Failed)
test/built-ins/Proxy/function-prototype.js (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-symbol.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-symbol.js (previously Failed)
test/built-ins/Proxy/constructor.js [strict mode] (previously Failed)
test/built-ins/Proxy/constructor.js (previously Failed)
test/built-ins/Proxy/name.js [strict mode] (previously Failed)
test/built-ins/Proxy/name.js (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-string.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-string.js (previously Failed)
test/built-ins/Proxy/property-order.js [strict mode] (previously Failed)
test/built-ins/Proxy/property-order.js (previously Failed)
test/built-ins/Proxy/length.js [strict mode] (previously Failed)
test/built-ins/Proxy/length.js (previously Failed)
test/built-ins/Proxy/proxy-undefined-newtarget.js [strict mode] (previously Failed)
test/built-ins/Proxy/proxy-undefined-newtarget.js (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-null.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-null.js (previously Failed)
test/built-ins/Proxy/proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/proxy.js (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-undefined.js (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-boolean.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-boolean.js (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-boolean.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-boolean.js (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-symbol.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-handler-not-object-throw-symbol.js (previously Failed)
test/built-ins/Proxy/create-handler-is-revoked-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-handler-is-revoked-proxy.js (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-number.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-number.js (previously Failed)
test/built-ins/Proxy/create-target-is-revoked-function-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-target-is-revoked-function-proxy.js (previously Failed)
test/built-ins/Proxy/proxy-no-prototype.js [strict mode] (previously Failed)
test/built-ins/Proxy/proxy-no-prototype.js (previously Failed)
test/built-ins/Proxy/create-target-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-target-is-not-callable.js (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-undefined.js (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-string.js [strict mode] (previously Failed)
test/built-ins/Proxy/create-target-not-object-throw-string.js (previously Failed)
test/built-ins/Proxy/proxy-newtarget.js [strict mode] (previously Failed)
test/built-ins/Proxy/proxy-newtarget.js (previously Failed)
test/built-ins/Proxy/enumerate/removed-does-not-trigger.js [strict mode] (previously Failed)
test/built-ins/Proxy/enumerate/removed-does-not-trigger.js (previously Failed)
test/built-ins/Proxy/ownKeys/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-not-list-object-throws-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-not-list-object-throws-realm.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-number.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-number.js (previously Failed)
test/built-ins/Proxy/ownKeys/call-parameters-object-getownpropertynames.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/call-parameters-object-getownpropertynames.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-object.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-object.js (previously Failed)
test/built-ins/Proxy/ownKeys/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-undefined.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-is-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-is-abrupt.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-duplicate-symbol-entries-throws.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-duplicate-symbol-entries-throws.js (previously Failed)
test/built-ins/Proxy/ownKeys/call-parameters-object-getownpropertysymbols.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/call-parameters-object-getownpropertysymbols.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-duplicate-entries-throws.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-duplicate-entries-throws.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-array.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-array.js (previously Failed)
test/built-ins/Proxy/ownKeys/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/null-handler.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-boolean.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-boolean.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-not-list-object-throws.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-not-list-object-throws.js (previously Failed)
test/built-ins/Proxy/ownKeys/trap-is-null-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/trap-is-null-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-all-non-configurable-keys.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-all-non-configurable-keys.js (previously Failed)
test/built-ins/Proxy/ownKeys/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/ownKeys/extensible-return-trap-result-absent-not-configurable-keys.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/extensible-return-trap-result-absent-not-configurable-keys.js (previously Failed)
test/built-ins/Proxy/ownKeys/not-extensible-return-keys.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/not-extensible-return-keys.js (previously Failed)
test/built-ins/Proxy/ownKeys/not-extensible-missing-keys-throws.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/not-extensible-missing-keys-throws.js (previously Failed)
test/built-ins/Proxy/ownKeys/call-parameters-object-keys.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/call-parameters-object-keys.js (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-null.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/return-type-throws-null.js (previously Failed)
test/built-ins/Proxy/ownKeys/not-extensible-new-keys-throws.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/not-extensible-new-keys-throws.js (previously Failed)
test/built-ins/Proxy/ownKeys/extensible-return-trap-result.js [strict mode] (previously Failed)
test/built-ins/Proxy/ownKeys/extensible-return-trap-result.js (previously Failed)
test/built-ins/Proxy/deleteProperty/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/deleteProperty/return-false-strict.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/deleteProperty/trap-is-undefined-strict.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/return-is-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/return-is-abrupt.js (previously Failed)
test/built-ins/Proxy/deleteProperty/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/call-parameters.js (previously Failed)
test/built-ins/Proxy/deleteProperty/targetdesc-is-configurable-target-is-not-extensible.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/targetdesc-is-configurable-target-is-not-extensible.js (previously Failed)
test/built-ins/Proxy/deleteProperty/targetdesc-is-undefined-return-true.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/targetdesc-is-undefined-return-true.js (previously Failed)
test/built-ins/Proxy/deleteProperty/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/null-handler.js (previously Failed)
test/built-ins/Proxy/deleteProperty/trap-is-undefined-not-strict.js (previously Failed)
test/built-ins/Proxy/deleteProperty/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/deleteProperty/boolean-trap-result-boolean-true.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/boolean-trap-result-boolean-true.js (previously Failed)
test/built-ins/Proxy/deleteProperty/trap-is-undefined-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/trap-is-undefined-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/deleteProperty/boolean-trap-result-boolean-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/boolean-trap-result-boolean-false.js (previously Failed)
test/built-ins/Proxy/deleteProperty/return-false-not-strict.js (previously Failed)
test/built-ins/Proxy/deleteProperty/targetdesc-is-not-configurable.js [strict mode] (previously Failed)
test/built-ins/Proxy/deleteProperty/targetdesc-is-not-configurable.js (previously Failed)
test/built-ins/Proxy/revocable/name.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/name.js (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-length.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-length.js (previously Failed)
test/built-ins/Proxy/revocable/revoke.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/revoke.js (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-name.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-name.js (previously Failed)
test/built-ins/Proxy/revocable/length.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/length.js (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-extensible.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-extensible.js (previously Failed)
test/built-ins/Proxy/revocable/revoke-returns-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/revoke-returns-undefined.js (previously Failed)
test/built-ins/Proxy/revocable/revoke-consecutive-call-returns-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/revoke-consecutive-call-returns-undefined.js (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-prototype.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-prototype.js (previously Failed)
test/built-ins/Proxy/revocable/proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/proxy.js (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-property-order.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-property-order.js (previously Failed)
test/built-ins/Proxy/revocable/target-is-revoked-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/target-is-revoked-proxy.js (previously Failed)
test/built-ins/Proxy/revocable/not-a-constructor.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/not-a-constructor.js (previously Failed)
test/built-ins/Proxy/revocable/target-is-revoked-function-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/target-is-revoked-function-proxy.js (previously Failed)
test/built-ins/Proxy/revocable/builtin.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/builtin.js (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-not-a-constructor.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/revocation-function-not-a-constructor.js (previously Failed)
test/built-ins/Proxy/revocable/handler-is-revoked-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/revocable/handler-is-revoked-proxy.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-number.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-number.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-symbol.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-symbol.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-undefined.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/extensible-target-return-handlerproto.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/extensible-target-return-handlerproto.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-boolean.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-boolean.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/not-extensible-not-same-proto-throws.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/not-extensible-not-same-proto-throws.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/instanceof-custom-return-accepted.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/instanceof-custom-return-accepted.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/return-is-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/return-is-abrupt.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/call-parameters.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/null-handler.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-null-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-null-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/instanceof-target-not-extensible-not-same-proto-throws.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/instanceof-target-not-extensible-not-same-proto-throws.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/not-extensible-same-proto.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/not-extensible-same-proto.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-string.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-string.js (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-undefined-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/getPrototypeOf/trap-is-undefined-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/preventExtensions/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/preventExtensions/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/preventExtensions/return-true-target-is-not-extensible.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/return-true-target-is-not-extensible.js (previously Failed)
test/built-ins/Proxy/preventExtensions/return-is-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/return-is-abrupt.js (previously Failed)
test/built-ins/Proxy/preventExtensions/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/call-parameters.js (previously Failed)
test/built-ins/Proxy/preventExtensions/return-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/return-false.js (previously Failed)
test/built-ins/Proxy/preventExtensions/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/null-handler.js (previously Failed)
test/built-ins/Proxy/preventExtensions/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/preventExtensions/trap-is-null-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/trap-is-null-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/preventExtensions/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/preventExtensions/return-true-target-is-extensible.js [strict mode] (previously Failed)
test/built-ins/Proxy/preventExtensions/return-true-target-is-extensible.js (previously Failed)
test/built-ins/Proxy/get/not-same-value-configurable-false-writable-false-throws.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/not-same-value-configurable-false-writable-false-throws.js (previously Failed)
test/built-ins/Proxy/get/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/get/return-trap-result-configurable-true-writable-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/return-trap-result-configurable-true-writable-false.js (previously Failed)
test/built-ins/Proxy/get/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/get/return-is-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/return-is-abrupt.js (previously Failed)
test/built-ins/Proxy/get/return-trap-result-accessor-property.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/return-trap-result-accessor-property.js (previously Failed)
test/built-ins/Proxy/get/return-trap-result.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/return-trap-result.js (previously Failed)
test/built-ins/Proxy/get/trap-is-undefined-no-property.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/trap-is-undefined-no-property.js (previously Failed)
test/built-ins/Proxy/get/return-trap-result-configurable-false-writable-true.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/return-trap-result-configurable-false-writable-true.js (previously Failed)
test/built-ins/Proxy/get/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/call-parameters.js (previously Failed)
test/built-ins/Proxy/get/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/null-handler.js (previously Failed)
test/built-ins/Proxy/get/accessor-get-is-undefined-throws.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/accessor-get-is-undefined-throws.js (previously Failed)
test/built-ins/Proxy/get/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/get/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/get/trap-is-undefined-receiver.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/trap-is-undefined-receiver.js (previously Failed)
test/built-ins/Proxy/get/trap-is-undefined-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/trap-is-undefined-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/get/return-trap-result-configurable-true-assessor-get-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/return-trap-result-configurable-true-assessor-get-undefined.js (previously Failed)
test/built-ins/Proxy/get/return-trap-result-same-value-configurable-false-writable-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/get/return-trap-result-same-value-configurable-false-writable-false.js (previously Failed)
test/built-ins/Proxy/isExtensible/return-is-boolean.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/return-is-boolean.js (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/isExtensible/return-is-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/return-is-abrupt.js (previously Failed)
test/built-ins/Proxy/isExtensible/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/call-parameters.js (previously Failed)
test/built-ins/Proxy/isExtensible/return-is-different-from-target.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/return-is-different-from-target.js (previously Failed)
test/built-ins/Proxy/isExtensible/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/null-handler.js (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-null-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-null-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-undefined-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/trap-is-undefined-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/isExtensible/return-same-result-from-target.js [strict mode] (previously Failed)
test/built-ins/Proxy/isExtensible/return-same-result-from-target.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-return-configurable.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-return-configurable.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined-target-is-not-extensible.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined-target-is-not-extensible.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-not-configurable-not-writable-targetdesc-is-writable.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-not-configurable-not-writable-targetdesc-is-writable.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/return-is-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/return-is-abrupt.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined-targetdesc-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined-targetdesc-is-undefined.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/call-parameters.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/null-handler.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-null-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-null-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined-targetdesc-is-not-configurable.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined-targetdesc-is-not-configurable.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-not-configurable-targetdesc-is-configurable.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-not-configurable-targetdesc-is-configurable.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined-realm.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-not-configurable-targetdesc-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-not-configurable-targetdesc-is-undefined.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-invalid-descriptor.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-invalid-descriptor.js (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-return-not-configurable.js [strict mode] (previously Failed)
test/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-return-not-configurable.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-number.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-number.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-number-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-number-realm.js (previously Failed)
test/built-ins/Proxy/construct/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-symbol.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-symbol.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-null-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-null-realm.js (previously Failed)
test/built-ins/Proxy/construct/call-parameters-new-target.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/call-parameters-new-target.js (previously Failed)
test/built-ins/Proxy/construct/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/construct/null-handler-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/null-handler-realm.js (previously Failed)
test/built-ins/Proxy/construct/return-is-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-is-abrupt.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-boolean-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-boolean-realm.js (previously Failed)
test/built-ins/Proxy/construct/trap-is-undefined-no-property.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/trap-is-undefined-no-property.js (previously Failed)
test/built-ins/Proxy/construct/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/call-parameters.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-undefined.js (previously Failed)
test/built-ins/Proxy/construct/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/null-handler.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-symbol-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-symbol-realm.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-string-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-string-realm.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-boolean.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-boolean.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-null.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-null.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-undefined-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-undefined-realm.js (previously Failed)
test/built-ins/Proxy/construct/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-string.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/return-not-object-throws-string.js (previously Failed)
test/built-ins/Proxy/construct/trap-is-null.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/trap-is-null.js (previously Failed)
test/built-ins/Proxy/construct/call-result.js [strict mode] (previously Failed)
test/built-ins/Proxy/construct/call-result.js (previously Failed)
test/built-ins/Proxy/defineProperty/trap-return-is-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/trap-return-is-false.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-undefined-not-configurable-descriptor.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-undefined-not-configurable-descriptor.js (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-configurable-desc-not-configurable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-configurable-desc-not-configurable-realm.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-configurable-desc-not-configurable.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-configurable-desc-not-configurable.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-not-configurable-writable-desc-not-writable.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-not-configurable-writable-desc-not-writable.js (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/defineProperty/null-handler-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/null-handler-realm.js (previously Failed)
test/built-ins/Proxy/defineProperty/return-is-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/return-is-abrupt.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-undefined-target-is-not-extensible-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-undefined-target-is-not-extensible-realm.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-realm.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-not-configurable-target-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-not-configurable-target-realm.js (previously Failed)
test/built-ins/Proxy/defineProperty/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/call-parameters.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-undefined-target-is-not-extensible.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-undefined-target-is-not-extensible.js (previously Failed)
test/built-ins/Proxy/defineProperty/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/null-handler.js (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-null-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-null-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-undefined-not-configurable-descriptor-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-undefined-not-configurable-descriptor-realm.js (previously Failed)
test/built-ins/Proxy/defineProperty/return-boolean-and-define-target.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/return-boolean-and-define-target.js (previously Failed)
test/built-ins/Proxy/defineProperty/desc-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/desc-realm.js (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-not-configurable-target.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-not-configurable-target.js (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-undefined-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/defineProperty/trap-is-undefined-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/has/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/has/return-false-targetdesc-not-configurable.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/return-false-targetdesc-not-configurable.js (previously Failed)
test/built-ins/Proxy/has/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/has/call-object-create.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/call-object-create.js (previously Failed)
test/built-ins/Proxy/has/return-true-without-same-target-prop.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/return-true-without-same-target-prop.js (previously Failed)
test/built-ins/Proxy/has/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/null-handler.js (previously Failed)
test/built-ins/Proxy/has/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/has/call-in-prototype.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/call-in-prototype.js (previously Failed)
test/built-ins/Proxy/has/return-is-abrupt-in.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/return-is-abrupt-in.js (previously Failed)
test/built-ins/Proxy/has/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/has/call-in.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/call-in.js (previously Failed)
test/built-ins/Proxy/has/return-true-target-prop-exists.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/return-true-target-prop-exists.js (previously Failed)
test/built-ins/Proxy/has/return-false-target-not-extensible.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/return-false-target-not-extensible.js (previously Failed)
test/built-ins/Proxy/has/trap-is-undefined-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/trap-is-undefined-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/has/return-false-target-prop-exists.js [strict mode] (previously Failed)
test/built-ins/Proxy/has/return-false-target-prop-exists.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/not-extensible-target-not-same-target-prototype.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/not-extensible-target-not-same-target-prototype.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-target-getprototypeof.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-target-getprototypeof.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-get-trap.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-get-trap.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/call-parameters.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/toboolean-trap-result-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/toboolean-trap-result-false.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/toboolean-trap-result-true-target-is-extensible.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/toboolean-trap-result-true-target-is-extensible.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/null-handler.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-null-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-null-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-undefined-or-null.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-undefined-or-null.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/internals-call-order.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/internals-call-order.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-trap.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-trap.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/not-extensible-target-same-target-prototype.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/not-extensible-target-same-target-prototype.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-undefined-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/trap-is-undefined-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-isextensible-target.js [strict mode] (previously Failed)
test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-isextensible-target.js (previously Failed)
test/built-ins/Proxy/apply/return-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/return-abrupt.js (previously Failed)
test/built-ins/Proxy/apply/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/apply/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/apply/null-handler-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/null-handler-realm.js (previously Failed)
test/built-ins/Proxy/apply/trap-is-undefined-no-property.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/trap-is-undefined-no-property.js (previously Failed)
test/built-ins/Proxy/apply/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/call-parameters.js (previously Failed)
test/built-ins/Proxy/apply/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/null-handler.js (previously Failed)
test/built-ins/Proxy/apply/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/apply/trap-is-null-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/trap-is-null-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/apply/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/apply/trap-is-null.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/trap-is-null.js (previously Failed)
test/built-ins/Proxy/apply/call-result.js [strict mode] (previously Failed)
test/built-ins/Proxy/apply/call-result.js (previously Failed)
test/built-ins/Proxy/set/boolean-trap-result-is-false-undefined-return-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/boolean-trap-result-is-false-undefined-return-false.js (previously Failed)
test/built-ins/Proxy/set/boolean-trap-result-is-false-null-return-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/boolean-trap-result-is-false-null-return-false.js (previously Failed)
test/built-ins/Proxy/set/trap-is-not-callable-realm.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/trap-is-not-callable-realm.js (previously Failed)
test/built-ins/Proxy/set/trap-is-missing-receiver-multiple-calls-index.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/trap-is-missing-receiver-multiple-calls-index.js (previously Failed)
test/built-ins/Proxy/set/boolean-trap-result-is-false-string-return-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/boolean-trap-result-is-false-string-return-false.js (previously Failed)
test/built-ins/Proxy/set/trap-is-not-callable.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/trap-is-not-callable.js (previously Failed)
test/built-ins/Proxy/set/call-parameters-prototype-dunder-proto.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/call-parameters-prototype-dunder-proto.js (previously Failed)
test/built-ins/Proxy/set/return-is-abrupt.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/return-is-abrupt.js (previously Failed)
test/built-ins/Proxy/set/target-property-is-not-configurable-not-writable-not-equal-to-v.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/target-property-is-not-configurable-not-writable-not-equal-to-v.js (previously Failed)
test/built-ins/Proxy/set/trap-is-undefined-no-property.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/trap-is-undefined-no-property.js (previously Failed)
test/built-ins/Proxy/set/return-true-target-property-accessor-is-not-configurable.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/return-true-target-property-accessor-is-not-configurable.js (previously Failed)
test/built-ins/Proxy/set/call-parameters.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/call-parameters.js (previously Failed)
test/built-ins/Proxy/set/return-true-target-property-accessor-is-configurable-set-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/return-true-target-property-accessor-is-configurable-set-is-undefined.js (previously Failed)
test/built-ins/Proxy/set/null-handler.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/null-handler.js (previously Failed)
test/built-ins/Proxy/set/trap-is-missing-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/trap-is-missing-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/set/call-parameters-prototype-index.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/call-parameters-prototype-index.js (previously Failed)
test/built-ins/Proxy/set/trap-is-null-target-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/trap-is-null-target-is-proxy.js (previously Failed)
test/built-ins/Proxy/set/return-true-target-property-is-not-writable.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/return-true-target-property-is-not-writable.js (previously Failed)
test/built-ins/Proxy/set/target-property-is-accessor-not-configurable-set-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/target-property-is-accessor-not-configurable-set-is-undefined.js (previously Failed)
test/built-ins/Proxy/set/trap-is-undefined.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/trap-is-undefined.js (previously Failed)
test/built-ins/Proxy/set/return-true-target-property-is-not-configurable.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/return-true-target-property-is-not-configurable.js (previously Failed)
test/built-ins/Proxy/set/boolean-trap-result-is-false-boolean-return-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/boolean-trap-result-is-false-boolean-return-false.js (previously Failed)
test/built-ins/Proxy/set/boolean-trap-result-is-false-number-return-false.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/boolean-trap-result-is-false-number-return-false.js (previously Failed)
test/built-ins/Proxy/set/trap-is-null-receiver.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/trap-is-null-receiver.js (previously Failed)
test/built-ins/Proxy/set/call-parameters-prototype.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/call-parameters-prototype.js (previously Failed)
test/built-ins/Proxy/set/trap-is-missing-receiver-multiple-calls.js [strict mode] (previously Failed)
test/built-ins/Proxy/set/trap-is-missing-receiver-multiple-calls.js (previously Failed)
test/built-ins/Object/getOwnPropertySymbols/proxy-invariant-not-extensible-extra-string-key.js [strict mode] (previously Failed)
test/built-ins/Object/getOwnPropertySymbols/proxy-invariant-not-extensible-extra-string-key.js (previously Failed)
test/built-ins/Object/getOwnPropertySymbols/proxy-invariant-absent-not-configurable-string-key.js [strict mode] (previously Failed)
test/built-ins/Object/getOwnPropertySymbols/proxy-invariant-absent-not-configurable-string-key.js (previously Failed)
test/built-ins/Object/getOwnPropertySymbols/proxy-invariant-duplicate-string-entry.js [strict mode] (previously Failed)
test/built-ins/Object/getOwnPropertySymbols/proxy-invariant-duplicate-string-entry.js (previously Failed)
test/built-ins/Object/getOwnPropertySymbols/proxy-invariant-not-extensible-absent-string-key.js [strict mode] (previously Failed)
test/built-ins/Object/getOwnPropertySymbols/proxy-invariant-not-extensible-absent-string-key.js (previously Failed)
test/built-ins/Object/entries/observable-operations.js [strict mode] (previously Failed)
test/built-ins/Object/entries/observable-operations.js (previously Failed)
test/built-ins/Object/prototype/toString/proxy-revoked.js [strict mode] (previously Failed)
test/built-ins/Object/prototype/toString/proxy-revoked.js (previously Failed)
test/built-ins/Object/prototype/isPrototypeOf/arg-is-proxy.js [strict mode] (previously Failed)
test/built-ins/Object/prototype/isPrototypeOf/arg-is-proxy.js (previously Failed)
test/built-ins/Object/preventExtensions/abrupt-completion.js [strict mode] (previously Failed)
test/built-ins/Object/preventExtensions/abrupt-completion.js (previously Failed)
test/built-ins/Object/preventExtensions/symbol-object-contains-symbol-properties-strict.js [strict mode] (previously Failed)
test/built-ins/Object/preventExtensions/throws-when-false.js [strict mode] (previously Failed)
test/built-ins/Object/preventExtensions/throws-when-false.js (previously Failed)
test/built-ins/Object/freeze/abrupt-completion.js [strict mode] (previously Failed)
test/built-ins/Object/freeze/abrupt-completion.js (previously Failed)
test/built-ins/Object/freeze/proxy-with-defineProperty-handler.js [strict mode] (previously Failed)
test/built-ins/Object/freeze/proxy-with-defineProperty-handler.js (previously Failed)
test/built-ins/Object/freeze/frozen-object-contains-symbol-properties-strict.js [strict mode] (previously Failed)
test/built-ins/Object/freeze/throws-when-false.js [strict mode] (previously Failed)
test/built-ins/Object/freeze/throws-when-false.js (previously Failed)
test/built-ins/Object/getOwnPropertyNames/proxy-invariant-not-extensible-absent-symbol-key.js [strict mode] (previously Failed)
test/built-ins/Object/getOwnPropertyNames/proxy-invariant-not-extensible-absent-symbol-key.js (previously Failed)
test/built-ins/Object/getOwnPropertyNames/proxy-invariant-not-extensible-extra-symbol-key.js [strict mode] (previously Failed)
test/built-ins/Object/getOwnPropertyNames/proxy-invariant-not-extensible-extra-symbol-key.js (previously Failed)
test/built-ins/Object/getOwnPropertyNames/proxy-invariant-absent-not-configurable-symbol-key.js [strict mode] (previously Failed)
test/built-ins/Object/getOwnPropertyNames/proxy-invariant-absent-not-configurable-symbol-key.js (previously Failed)
test/built-ins/Object/getOwnPropertyNames/proxy-invariant-duplicate-symbol-entry.js [strict mode] (previously Failed)
test/built-ins/Object/getOwnPropertyNames/proxy-invariant-duplicate-symbol-entry.js (previously Failed)
test/built-ins/Object/keys/proxy-keys.js [strict mode] (previously Failed)
test/built-ins/Object/keys/proxy-keys.js (previously Failed)
test/built-ins/Object/keys/proxy-non-enumerable-prop-invariant-2.js [strict mode] (previously Failed)
test/built-ins/Object/keys/proxy-non-enumerable-prop-invariant-2.js (previously Failed)
test/language/expressions/object/object-spread-proxy-get-not-called-on-dontenum-keys.js (previously Failed)
test/language/expressions/object/dstr/object-rest-proxy-get-not-called-on-dontenum-keys.js [strict mode] (previously Failed)
test/language/expressions/object/dstr/object-rest-proxy-get-not-called-on-dontenum-keys.js (previously Failed)
test/language/expressions/typeof/proxy.js [strict mode] (previously Failed)
test/language/expressions/typeof/proxy.js (previously Failed)
test/language/statements/for-of/iterator-as-proxy.js [strict mode] (previously Failed)
test/language/statements/for-of/iterator-as-proxy.js (previously Failed)
test/language/types/reference/8.7.2-4-s.js [strict mode] (previously Failed)
test/language/types/reference/put-value-prop-base-primitive.js [strict mode] (previously Failed)
test/language/types/reference/put-value-prop-base-primitive.js (previously Failed)
test/language/types/reference/8.7.2-5-s.js [strict mode] (previously Failed)
test/language/types/reference/8.7.2-3-s.js [strict mode] (previously Failed)
test/language/arguments-object/mapped/mapped-arguments-nonconfigurable-strict-delete-1.js (previously Failed)
test/language/arguments-object/mapped/mapped-arguments-nonconfigurable-strict-delete-3.js (previously Failed)
test/language/arguments-object/mapped/mapped-arguments-nonconfigurable-strict-delete-4.js (previously Failed)
test/language/arguments-object/mapped/mapped-arguments-nonconfigurable-strict-delete-2.js (previously Failed)

Copy link
Member

@jedel1043 jedel1043 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just some implementation details :) Nice work!

boa/src/builtins/proxy/mod.rs Outdated Show resolved Hide resolved
boa/src/builtins/proxy/mod.rs Outdated Show resolved Hide resolved
boa/src/builtins/proxy/mod.rs Outdated Show resolved Hide resolved
boa/src/builtins/proxy/mod.rs Outdated Show resolved Hide resolved
boa/src/object/internal_methods/proxy.rs Outdated Show resolved Hide resolved
boa/src/object/internal_methods/proxy.rs Show resolved Hide resolved
boa/src/object/internal_methods/proxy.rs Outdated Show resolved Hide resolved
@jedel1043 jedel1043 added the enhancement New feature or request label Oct 13, 2021
@raskad raskad requested a review from jedel1043 October 13, 2021 23:39
Copy link
Member

@jedel1043 jedel1043 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No additional nitpicks. Good job!

@jedel1043 jedel1043 merged commit f66324c into boa-dev:main Oct 14, 2021
@raskad raskad deleted the proxy-impl branch October 14, 2021 21:54
Nimpruda pushed a commit to Nimpruda/boa that referenced this pull request Oct 20, 2021
* Implement `Proxy` object

* Restucture `Proxy` struct fields

* Apply some suggestions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
builtins PRs and Issues related to builtins/intrinsics enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement Proxy built-in object
3 participants