Rename: legacy -> description

This commit is contained in:
Rick Waldron 2020-09-23 10:26:10 -04:00
parent e5fa1d5ef4
commit 834789514d
102 changed files with 7 additions and 7 deletions

View File

@ -8,7 +8,7 @@ info: |
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
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");

View File

@ -8,7 +8,7 @@ info: |
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
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");

View File

@ -8,7 +8,7 @@ info: |
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
es5id: 15.5.4.14_A2_T17
description: Call split(""), instance is String(" ")
description: Separator empty string, instance is String(" ")
---*/
var __string = new String(" ");

View File

@ -8,7 +8,7 @@ info: |
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
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);

View File

@ -8,7 +8,7 @@ info: |
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
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");

Some files were not shown because too many files have changed in this diff Show More