mirror of
https://github.com/tc39/test262.git
synced 2025-07-29 08:54:35 +02:00
Rename: legacy -> description
This commit is contained in:
parent
e5fa1d5ef4
commit
834789514d
@ -8,7 +8,7 @@ info: |
|
|||||||
separator; these occurrences are not part of any substring in the returned array, but serve to divide up
|
separator; these occurrences are not part of any substring in the returned array, but serve to divide up
|
||||||
the string value. The value of separator may be a string of any length or it may be a RegExp object
|
the string value. The value of separator may be a string of any length or it may be a RegExp object
|
||||||
es5id: 15.5.4.14_A2_T11
|
es5id: 15.5.4.14_A2_T11
|
||||||
description: "Call split(\":\"), instance is String(\"one-1,two-2,four-4\")"
|
description: Separator colon, instance is String(\"one-1,two-2,four-4\")
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var __string = new String("one-1,two-2,four-4");
|
var __string = new String("one-1,two-2,four-4");
|
@ -8,7 +8,7 @@ info: |
|
|||||||
separator; these occurrences are not part of any substring in the returned array, but serve to divide up
|
separator; these occurrences are not part of any substring in the returned array, but serve to divide up
|
||||||
the string value. The value of separator may be a string of any length or it may be a RegExp object
|
the string value. The value of separator may be a string of any length or it may be a RegExp object
|
||||||
es5id: 15.5.4.14_A2_T1
|
es5id: 15.5.4.14_A2_T1
|
||||||
description: Call split(","), instance is String("one,two,three,four,five")
|
description: Separator comma, instance is String("one,two,three,four,five")
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var __string = new String("one,two,three,four,five");
|
var __string = new String("one,two,three,four,five");
|
@ -8,7 +8,7 @@ info: |
|
|||||||
separator; these occurrences are not part of any substring in the returned array, but serve to divide up
|
separator; these occurrences are not part of any substring in the returned array, but serve to divide up
|
||||||
the string value. The value of separator may be a string of any length or it may be a RegExp object
|
the string value. The value of separator may be a string of any length or it may be a RegExp object
|
||||||
es5id: 15.5.4.14_A2_T17
|
es5id: 15.5.4.14_A2_T17
|
||||||
description: Call split(""), instance is String(" ")
|
description: Separator empty string, instance is String(" ")
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var __string = new String(" ");
|
var __string = new String(" ");
|
@ -8,7 +8,7 @@ info: |
|
|||||||
separator; these occurrences are not part of any substring in the returned array, but serve to divide up
|
separator; these occurrences are not part of any substring in the returned array, but serve to divide up
|
||||||
the string value. The value of separator may be a string of any length or it may be a RegExp object
|
the string value. The value of separator may be a string of any length or it may be a RegExp object
|
||||||
es5id: 15.5.4.14_A2_T35
|
es5id: 15.5.4.14_A2_T35
|
||||||
description: Call split(1, Math.pow(2,32)-1), instance is Number
|
description: Separator number, limit Math.pow(2,32)-1, instance is Number
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var __instance = new Number(100111122133144155);
|
var __instance = new Number(100111122133144155);
|
@ -8,7 +8,7 @@ info: |
|
|||||||
separator; these occurrences are not part of any substring in the returned array, but serve to divide up
|
separator; these occurrences are not part of any substring in the returned array, but serve to divide up
|
||||||
the string value. The value of separator may be a string of any length or it may be a RegExp object
|
the string value. The value of separator may be a string of any length or it may be a RegExp object
|
||||||
es5id: 15.5.4.14_A2_T5
|
es5id: 15.5.4.14_A2_T5
|
||||||
description: Call split(/,/), instance is String("one-1,two-2,four-4")
|
description: Separator /,/ (regexp comma), instance is String("one-1,two-2,four-4")
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var __string = new String("one-1,two-2,four-4");
|
var __string = new String("one-1,two-2,four-4");
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user