test262/test/built-ins/Proxy
Gus Caplan 2aacb28bb9 Fix some proxy tests (#1966)
- `Proxy/getOwnPropertyDescriptor/call-parameters.js`
  Fixes a call to `Object.getOwnPropertyDescriptor` without the prop
  param. Not actually a huge problem, as the test wasn't depending on
  it.

- `Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined`
  This test asserted that `function() {}` should throw with the
  following spec step, which is incorrect, as functions are typed as
  `Object` in the spec.
  """
  1. If Type(trapResultObj) is neither Object nor Undefined, throw a
    TypeError exception.
  """
2018-11-26 13:41:13 -05:00
..
apply Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
construct Features: run feature detector to verify newly added feature flags 2018-07-25 12:16:49 -04:00
defineProperty Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
deleteProperty Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
enumerate Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
get Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
getOwnPropertyDescriptor Fix some proxy tests (#1966) 2018-11-26 13:41:13 -05:00
getPrototypeOf Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
has Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
isExtensible Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
ownKeys Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
preventExtensions Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
revocable Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
set Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
setPrototypeOf Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
constructor.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-handler-is-revoked-proxy.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-handler-not-object-throw-boolean.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-handler-not-object-throw-null.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-handler-not-object-throw-number.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-handler-not-object-throw-string.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-handler-not-object-throw-symbol.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-handler-not-object-throw-undefined.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-target-is-not-callable.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-target-is-not-constructor.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-target-is-revoked-proxy.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-target-not-object-throw-boolean.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-target-not-object-throw-null.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-target-not-object-throw-number.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-target-not-object-throw-string.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-target-not-object-throw-symbol.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
create-target-not-object-throw-undefined.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
function-prototype.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
get-fn-realm.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
length.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
name.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
proxy-newtarget.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
proxy-no-prototype.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
proxy-undefined-newtarget.js Features: Proxy, Reflect (See pull/1643) (#1646) 2018-07-20 18:42:39 -04:00
proxy.js Proxy: Core 2015-06-15 22:37:55 -04:00