mirror of https://github.com/tc39/test262.git
Consistently use spaces in features lists (#2000)
This commit is contained in:
parent
bf6b753dd7
commit
b3efcd2f3f
|
@ -11,7 +11,7 @@ info: >
|
|||
The function object that is the initial value of String.prototype.trimLeft is the same function object that is the initial value of String.prototype.trimStart.
|
||||
|
||||
includes: [propertyHelper.js]
|
||||
features: [string-trimming,String.prototype.trimStart]
|
||||
features: [string-trimming, String.prototype.trimStart]
|
||||
---*/
|
||||
|
||||
verifyProperty(String.prototype.trimLeft, "name", {
|
||||
|
|
|
@ -10,7 +10,7 @@ info: >
|
|||
|
||||
The function object that is the initial value of String.prototype.trimRight is the same function object that is the initial value of String.prototype.trimEnd.
|
||||
includes: [propertyHelper.js]
|
||||
features: [string-trimming,String.prototype.trimEnd]
|
||||
features: [string-trimming, String.prototype.trimEnd]
|
||||
---*/
|
||||
|
||||
verifyProperty(String.prototype.trimRight, "name", {
|
||||
|
|
|
@ -8,7 +8,7 @@ esid: sec-get-arraybuffer-@@species
|
|||
es6id: 24.1.3.3
|
||||
author: Sam Mikes
|
||||
description: ArrayBuffer[Symbol.species] exists per spec
|
||||
features: [ ArrayBuffer, Symbol.species ]
|
||||
features: [ArrayBuffer, Symbol.species]
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
esid: sec-object.is
|
||||
description: >
|
||||
Object.is/SameValue: Symbol
|
||||
features: [Object.is,Symbol]
|
||||
features: [Object.is, Symbol]
|
||||
---*/
|
||||
var symA = Symbol('66');
|
||||
var symB = Symbol('66');
|
||||
|
|
|
@ -18,7 +18,7 @@ info: |
|
|||
If iterationKind is enumerate, then
|
||||
Return status.
|
||||
|
||||
features: [destructuring-assignment,for-of,Symbol.iterator]
|
||||
features: [destructuring-assignment, for-of, Symbol.iterator]
|
||||
---*/
|
||||
|
||||
var callCount = 0;
|
||||
|
|
|
@ -11,7 +11,7 @@ info: |
|
|||
Let status be the result of performing DestructuringAssignmentEvaluation of
|
||||
assignmentPattern using nextValue as the argument.
|
||||
|
||||
features: [destructuring-assignment,for-of]
|
||||
features: [destructuring-assignment, for-of]
|
||||
---*/
|
||||
|
||||
var iterationCount = 0;
|
||||
|
|
|
@ -17,7 +17,7 @@ info: |
|
|||
Let status be PutValue(lhsRef, nextValue).
|
||||
...
|
||||
|
||||
features: [for-of,Symbol.iterator]
|
||||
features: [for-of, Symbol.iterator]
|
||||
---*/
|
||||
|
||||
var callCount = 0;
|
||||
|
|
Loading…
Reference in New Issue