mirror of
https://github.com/tc39/test262.git
synced 2025-07-29 17:04:31 +02:00
Remove unused includes
This commit is contained in:
parent
658f19005b
commit
f717982c94
@ -15,7 +15,6 @@ info: |
|
|||||||
a. Let hasNameProperty be HasOwnProperty(propValue, "name").
|
a. Let hasNameProperty be HasOwnProperty(propValue, "name").
|
||||||
b. ReturnIfAbrupt(hasNameProperty).
|
b. ReturnIfAbrupt(hasNameProperty).
|
||||||
c. If hasNameProperty is false, perform SetFunctionName(propValue, propKey).
|
c. If hasNameProperty is false, perform SetFunctionName(propValue, propKey).
|
||||||
includes: [propertyHelper.js]
|
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var o;
|
var o;
|
||||||
|
@ -9,7 +9,7 @@ info: |
|
|||||||
ES6 section 17: Every other data property described in clauses 18 through 26
|
ES6 section 17: Every other data property described in clauses 18 through 26
|
||||||
and in Annex B.2 has the attributes { [[Writable]]: true,
|
and in Annex B.2 has the attributes { [[Writable]]: true,
|
||||||
[[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified.
|
[[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified.
|
||||||
includes: [propertyHelper.js, testTypedArray.js]
|
includes: [propertyHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
verifyNotEnumerable(ArrayBuffer, "isView");
|
verifyNotEnumerable(ArrayBuffer, "isView");
|
||||||
|
@ -13,7 +13,6 @@ info: |
|
|||||||
exception.
|
exception.
|
||||||
...
|
...
|
||||||
|
|
||||||
includes: [propertyHelper.js]
|
|
||||||
features: [Symbol]
|
features: [Symbol]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -10,7 +10,6 @@ info: |
|
|||||||
Number.NEGATIVE_INFINITY
|
Number.NEGATIVE_INFINITY
|
||||||
|
|
||||||
The value of Number.NEGATIVE_INFINITY is -∞.
|
The value of Number.NEGATIVE_INFINITY is -∞.
|
||||||
includes: [propertyHelper.js]
|
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
assert.sameValue(Number.NEGATIVE_INFINITY, -Infinity);
|
assert.sameValue(Number.NEGATIVE_INFINITY, -Infinity);
|
||||||
|
@ -10,7 +10,6 @@ info: |
|
|||||||
Number.POSITIVE_INFINITY
|
Number.POSITIVE_INFINITY
|
||||||
|
|
||||||
The value of Number.POSITIVE_INFINITY is +∞.
|
The value of Number.POSITIVE_INFINITY is +∞.
|
||||||
includes: [propertyHelper.js]
|
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
assert.sameValue(Number.POSITIVE_INFINITY, Infinity);
|
assert.sameValue(Number.POSITIVE_INFINITY, Infinity);
|
||||||
|
@ -7,7 +7,6 @@ info: |
|
|||||||
es6id: S25.4.4.1_A8.1_T1
|
es6id: S25.4.4.1_A8.1_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.all() rejects when a promise in its array rejects
|
description: Promise.all() rejects when a promise in its array rejects
|
||||||
includes: [promiseHelper.js]
|
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -7,7 +7,6 @@ info: |
|
|||||||
es6id: S25.4.4.1_A8.2_T2
|
es6id: S25.4.4.1_A8.2_T2
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.all() rejects when second promise in array rejects
|
description: Promise.all() rejects when second promise in array rejects
|
||||||
includes: [promiseHelper.js]
|
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -7,12 +7,9 @@ info: |
|
|||||||
es6id: S25.4.4.5
|
es6id: S25.4.4.5
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.resolve delegates to foreign thenable
|
description: Promise.resolve delegates to foreign thenable
|
||||||
includes: [promiseHelper.js]
|
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var sequence = [];
|
|
||||||
|
|
||||||
var thenable = {
|
var thenable = {
|
||||||
then: function(onResolve, onReject) {
|
then: function(onResolve, onReject) {
|
||||||
return onResolve('resolved');
|
return onResolve('resolved');
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
/*---
|
/*---
|
||||||
description: >
|
description: >
|
||||||
Test the groups object on RegExp subclass results that do not have their own.
|
Test the groups object on RegExp subclass results that do not have their own.
|
||||||
includes: [propertyHelper.js]
|
|
||||||
esid: sec-regexpbuiltinexec
|
esid: sec-regexpbuiltinexec
|
||||||
features: [regexp-named-groups]
|
features: [regexp-named-groups]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
/*---
|
/*---
|
||||||
description: >
|
description: >
|
||||||
Test the groups object on RegExp subclass results that have their own.
|
Test the groups object on RegExp subclass results that have their own.
|
||||||
includes: [propertyHelper.js]
|
|
||||||
esid: sec-regexpbuiltinexec
|
esid: sec-regexpbuiltinexec
|
||||||
features: [regexp-named-groups]
|
features: [regexp-named-groups]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
/*---
|
/*---
|
||||||
description: >
|
description: >
|
||||||
Test the groups object with matched and unmatched named captures.
|
Test the groups object with matched and unmatched named captures.
|
||||||
includes: [propertyHelper.js]
|
|
||||||
esid: sec-regexpbuiltinexec
|
esid: sec-regexpbuiltinexec
|
||||||
features: [regexp-named-groups]
|
features: [regexp-named-groups]
|
||||||
info: |
|
info: |
|
||||||
|
@ -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
|
es6id: 21.2.4.2, 22.1.2.5, 22.2.2.4, 23.1.2.2, 23.2.2.2
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Symbol.species getters have defined names
|
description: Symbol.species getters have defined names
|
||||||
includes:
|
|
||||||
- propertyHelper.js
|
|
||||||
features: [Symbol.species]
|
features: [Symbol.species]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -6,8 +6,6 @@ info: |
|
|||||||
Symbol.species is retained on subclassing
|
Symbol.species is retained on subclassing
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Symbol.species is retained on subclassing
|
description: Symbol.species is retained on subclassing
|
||||||
includes:
|
|
||||||
- propertyHelper.js
|
|
||||||
features: [Symbol.species]
|
features: [Symbol.species]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
esid: sec-other-properties-of-the-global-object-global
|
esid: sec-other-properties-of-the-global-object-global
|
||||||
description: "'global' should be the global object"
|
description: "'global' should be the global object"
|
||||||
author: Jordan Harband
|
author: Jordan Harband
|
||||||
includes: [propertyHelper.js]
|
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
assert.sameValue(this, global);
|
assert.sameValue(this, global);
|
||||||
|
@ -13,7 +13,6 @@ info: |
|
|||||||
5. ReturnIfAbrupt(hasNameProperty).
|
5. ReturnIfAbrupt(hasNameProperty).
|
||||||
6. If hasNameProperty is false, then perform SetFunctionName(value,
|
6. If hasNameProperty is false, then perform SetFunctionName(value,
|
||||||
className).
|
className).
|
||||||
includes: [propertyHelper.js]
|
|
||||||
features: [generators]
|
features: [generators]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@ info: |
|
|||||||
|
|
||||||
The length property initially has the attributes { [[Writable]]: true,
|
The length property initially has the attributes { [[Writable]]: true,
|
||||||
[[Enumerable]]: false, [[Configurable]]: false }.
|
[[Enumerable]]: false, [[Configurable]]: false }.
|
||||||
includes: [propertyHelper.js]
|
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class Ar extends Array {}
|
class Ar extends Array {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user