This commit is contained in:
Jordan Harband 2015-11-23 11:04:45 -06:00
parent e459048f22
commit 7a5385e2ab
32 changed files with 32 additions and 0 deletions

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries should terminate if getting a value throws an exception description: Object.entries should terminate if getting a value throws an exception
es7id: pending
includes: [Test262Error.js] includes: [Test262Error.js]
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries should fail if given a null or undefined value description: Object.entries should fail if given a null or undefined value
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries should have length 1 description: Object.entries should have length 1
es7id: pending
author: Jordan Harband author: Jordan Harband
includes: [propertyHelper.js] includes: [propertyHelper.js]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries should have name property with value 'entries' description: Object.entries should have name property with value 'entries'
es7id: pending
author: Jordan Harband author: Jordan Harband
includes: [propertyHelper.js] includes: [propertyHelper.js]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries should be writable, non-enumerable, and configurable description: Object.entries should be writable, non-enumerable, and configurable
es7id: pending
author: Jordan Harband author: Jordan Harband
includes: [propertyHelper.js] includes: [propertyHelper.js]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries sees a new element added by a getter that is hit during iteration description: Object.entries sees a new element added by a getter that is hit during iteration
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries does not see an element made non-enumerable by a getter that is hit during iteration description: Object.entries does not see an element made non-enumerable by a getter that is hit during iteration
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries does not see an element removed by a getter that is hit during iteration description: Object.entries does not see an element removed by a getter that is hit during iteration
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries does not see inherited properties. description: Object.entries does not see inherited properties.
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries accepts boolean primitives. description: Object.entries accepts boolean primitives.
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries accepts number primitives. description: Object.entries accepts number primitives.
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries accepts string primitives. description: Object.entries accepts string primitives.
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries accepts Symbol primitives. description: Object.entries accepts Symbol primitives.
es7id: pending
author: Jordan Harband author: Jordan Harband
features: [Symbol] features: [Symbol]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.entries does not include Symbol keys. description: Object.entries does not include Symbol keys.
es7id: pending
author: Jordan Harband author: Jordan Harband
features: [Symbol] features: [Symbol]
---*/ ---*/

View File

@ -4,6 +4,7 @@
/*--- /*---
description: > description: >
Object.entries should not have its behavior impacted by modifications to the global property Object Object.entries should not have its behavior impacted by modifications to the global property Object
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -4,6 +4,7 @@
/*--- /*---
description: > description: >
Object.entries should not have its behavior impacted by modifications to Object.keys Object.entries should not have its behavior impacted by modifications to Object.keys
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values should terminate if getting a value throws an exception description: Object.values should terminate if getting a value throws an exception
es7id: pending
includes: [Test262Error.js] includes: [Test262Error.js]
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values should fail if given a null or undefined value description: Object.values should fail if given a null or undefined value
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values should have length 1 description: Object.values should have length 1
es7id: pending
author: Jordan Harband author: Jordan Harband
includes: [propertyHelper.js] includes: [propertyHelper.js]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values should have name property with value 'values' description: Object.values should have name property with value 'values'
es7id: pending
author: Jordan Harband author: Jordan Harband
includes: [propertyHelper.js] includes: [propertyHelper.js]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values should be writable, non-enumerable, and configurable description: Object.values should be writable, non-enumerable, and configurable
es7id: pending
author: Jordan Harband author: Jordan Harband
includes: [propertyHelper.js] includes: [propertyHelper.js]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values sees a new element added by a getter that is hit during iteration description: Object.values sees a new element added by a getter that is hit during iteration
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values does not see an element made non-enumerable by a getter that is hit during iteration description: Object.values does not see an element made non-enumerable by a getter that is hit during iteration
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values does not see an element removed by a getter that is hit during iteration description: Object.values does not see an element removed by a getter that is hit during iteration
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values does not see inherited properties. description: Object.values does not see inherited properties.
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values accepts boolean primitives. description: Object.values accepts boolean primitives.
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values accepts number primitives. description: Object.values accepts number primitives.
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values accepts string primitives. description: Object.values accepts string primitives.
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values accepts Symbol primitives. description: Object.values accepts Symbol primitives.
es7id: pending
author: Jordan Harband author: Jordan Harband
features: [Symbol] features: [Symbol]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
description: Object.values does not include Symbol keys. description: Object.values does not include Symbol keys.
es7id: pending
author: Jordan Harband author: Jordan Harband
features: [Symbol] features: [Symbol]
---*/ ---*/

View File

@ -4,6 +4,7 @@
/*--- /*---
description: > description: >
Object.values should not have its behavior impacted by modifications to the global property Object Object.values should not have its behavior impacted by modifications to the global property Object
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/

View File

@ -4,6 +4,7 @@
/*--- /*---
description: > description: >
Object.values should not have its behavior impacted by modifications to Object.keys Object.values should not have its behavior impacted by modifications to Object.keys
es7id: pending
author: Jordan Harband author: Jordan Harband
---*/ ---*/