Remove unused includes

This commit is contained in:
André Bargull 2018-01-17 10:39:18 -08:00 committed by Rick Waldron
parent 658f19005b
commit f717982c94
16 changed files with 1 additions and 20 deletions

View File

@ -15,7 +15,6 @@ info: |
a. Let hasNameProperty be HasOwnProperty(propValue, "name").
b. ReturnIfAbrupt(hasNameProperty).
c. If hasNameProperty is false, perform SetFunctionName(propValue, propKey).
includes: [propertyHelper.js]
---*/
var o;

View File

@ -9,7 +9,7 @@ info: |
ES6 section 17: Every other data property described in clauses 18 through 26
and in Annex B.2 has the attributes { [[Writable]]: true,
[[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js, testTypedArray.js]
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(ArrayBuffer, "isView");

View File

@ -13,7 +13,6 @@ info: |
exception.
...
includes: [propertyHelper.js]
features: [Symbol]
---*/

View File

@ -10,7 +10,6 @@ info: |
Number.NEGATIVE_INFINITY
The value of Number.NEGATIVE_INFINITY is -.
includes: [propertyHelper.js]
---*/
assert.sameValue(Number.NEGATIVE_INFINITY, -Infinity);

View File

@ -10,7 +10,6 @@ info: |
Number.POSITIVE_INFINITY
The value of Number.POSITIVE_INFINITY is +.
includes: [propertyHelper.js]
---*/
assert.sameValue(Number.POSITIVE_INFINITY, Infinity);

View File

@ -7,7 +7,6 @@ info: |
es6id: S25.4.4.1_A8.1_T1
author: Sam Mikes
description: Promise.all() rejects when a promise in its array rejects
includes: [promiseHelper.js]
flags: [async]
---*/

View File

@ -7,7 +7,6 @@ info: |
es6id: S25.4.4.1_A8.2_T2
author: Sam Mikes
description: Promise.all() rejects when second promise in array rejects
includes: [promiseHelper.js]
flags: [async]
---*/

View File

@ -7,12 +7,9 @@ info: |
es6id: S25.4.4.5
author: Sam Mikes
description: Promise.resolve delegates to foreign thenable
includes: [promiseHelper.js]
flags: [async]
---*/
var sequence = [];
var thenable = {
then: function(onResolve, onReject) {
return onResolve('resolved');

View File

@ -4,7 +4,6 @@
/*---
description: >
Test the groups object on RegExp subclass results that do not have their own.
includes: [propertyHelper.js]
esid: sec-regexpbuiltinexec
features: [regexp-named-groups]
info: |

View File

@ -4,7 +4,6 @@
/*---
description: >
Test the groups object on RegExp subclass results that have their own.
includes: [propertyHelper.js]
esid: sec-regexpbuiltinexec
features: [regexp-named-groups]
info: |

View File

@ -4,7 +4,6 @@
/*---
description: >
Test the groups object with matched and unmatched named captures.
includes: [propertyHelper.js]
esid: sec-regexpbuiltinexec
features: [regexp-named-groups]
info: |

View File

@ -7,8 +7,6 @@ info: |
es6id: 21.2.4.2, 22.1.2.5, 22.2.2.4, 23.1.2.2, 23.2.2.2
author: Sam Mikes
description: Symbol.species getters have defined names
includes:
- propertyHelper.js
features: [Symbol.species]
---*/

View File

@ -6,8 +6,6 @@ info: |
Symbol.species is retained on subclassing
author: Sam Mikes
description: Symbol.species is retained on subclassing
includes:
- propertyHelper.js
features: [Symbol.species]
---*/

View File

@ -5,7 +5,6 @@
esid: sec-other-properties-of-the-global-object-global
description: "'global' should be the global object"
author: Jordan Harband
includes: [propertyHelper.js]
---*/
assert.sameValue(this, global);

View File

@ -13,7 +13,6 @@ info: |
5. ReturnIfAbrupt(hasNameProperty).
6. If hasNameProperty is false, then perform SetFunctionName(value,
className).
includes: [propertyHelper.js]
features: [generators]
---*/

View File

@ -13,7 +13,6 @@ info: |
The length property initially has the attributes { [[Writable]]: true,
[[Enumerable]]: false, [[Configurable]]: false }.
includes: [propertyHelper.js]
---*/
class Ar extends Array {}