fixup! Fix missing renames for item->at

This commit is contained in:
Leo Balter 2020-11-18 12:06:05 -08:00 committed by Rick Waldron
parent 65bd4432f9
commit 2e5ff2461b
6 changed files with 8 additions and 8 deletions

View File

@ -5,7 +5,7 @@ esid: sec-array.prototype.at
description: >
Returns the item value at the specified relative index
info: |
Array.prototypeitem ( )
Array.prototype.at ( )
Let O be ? ToObject(this value).
Let len be ? LengthOfArrayLike(O).

View File

@ -5,7 +5,7 @@ esid: sec-array.prototype.at
description: >
Returns the item value at the specified index
info: |
Array.prototypeitem ( )
Array.prototype.at ( )
Let O be ? ToObject(this value).
Let len be ? LengthOfArrayLike(O).

View File

@ -5,7 +5,7 @@ esid: sec-array.prototype.at
description: >
Returns the item value at the specified index, respecting holes in sparse arrays.
info: |
Array.prototypeitem ( )
Array.prototype.at ( )
Let O be ? ToObject(this value).
Let len be ? LengthOfArrayLike(O).

View File

@ -5,7 +5,7 @@ esid: sec-String.prototype.at
description: >
The method should return an Iterator instance.
info: |
String.prototypeitem ( )
String.prototype.at ( )
Let O be ? ToObject(this value).
Let len be ? LengthOfStringLike(O).

View File

@ -1,11 +1,11 @@
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-String.prototypeitem
esid: sec-String.prototype.at
description: >
Returns the item value at the specified relative index
info: |
String.prototypeitem ( )
String.prototype.at ( )
Let O be ? ToObject(this value).
Let len be ? LengthOfStringLike(O).

View File

@ -1,11 +1,11 @@
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-String.prototypeitem
esid: sec-String.prototype.at
description: >
Returns the item value at the specified index
info: |
String.prototypeitem ( )
String.prototype.at ( )
Let O be ? ToObject(this value).
Let len be ? LengthOfStringLike(O).