ace15fa612
BUG=v8:3273 LOG=Y R=dslomov@chromium.org Review URL: https://codereview.chromium.org/240873002 Patch from Adrian Perez <aperez@igalia.com>. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@21074 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
140 lines
3.3 KiB
JavaScript
140 lines
3.3 KiB
JavaScript
// Copyright 2013 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
'use strict';
|
|
|
|
// This file relies on the fact that the following declaration has been made
|
|
// in runtime.js:
|
|
// var $Array = global.Array;
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
// ES6 draft 07-15-13, section 15.4.3.23
|
|
function ArrayFind(predicate /* thisArg */) { // length == 1
|
|
CHECK_OBJECT_COERCIBLE(this, "Array.prototype.find");
|
|
|
|
var array = ToObject(this);
|
|
var length = ToInteger(array.length);
|
|
|
|
if (!IS_SPEC_FUNCTION(predicate)) {
|
|
throw MakeTypeError('called_non_callable', [predicate]);
|
|
}
|
|
|
|
var thisArg;
|
|
if (%_ArgumentsLength() > 1) {
|
|
thisArg = %_Arguments(1);
|
|
}
|
|
|
|
if (IS_NULL_OR_UNDEFINED(thisArg)) {
|
|
thisArg = %GetDefaultReceiver(predicate) || thisArg;
|
|
} else if (!IS_SPEC_OBJECT(thisArg) && %IsSloppyModeFunction(predicate)) {
|
|
thisArg = ToObject(thisArg);
|
|
}
|
|
|
|
for (var i = 0; i < length; i++) {
|
|
if (i in array) {
|
|
var element = array[i];
|
|
if (%_CallFunction(thisArg, element, i, array, predicate)) {
|
|
return element;
|
|
}
|
|
}
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
|
|
// ES6 draft 07-15-13, section 15.4.3.24
|
|
function ArrayFindIndex(predicate /* thisArg */) { // length == 1
|
|
CHECK_OBJECT_COERCIBLE(this, "Array.prototype.findIndex");
|
|
|
|
var array = ToObject(this);
|
|
var length = ToInteger(array.length);
|
|
|
|
if (!IS_SPEC_FUNCTION(predicate)) {
|
|
throw MakeTypeError('called_non_callable', [predicate]);
|
|
}
|
|
|
|
var thisArg;
|
|
if (%_ArgumentsLength() > 1) {
|
|
thisArg = %_Arguments(1);
|
|
}
|
|
|
|
if (IS_NULL_OR_UNDEFINED(thisArg)) {
|
|
thisArg = %GetDefaultReceiver(predicate) || thisArg;
|
|
} else if (!IS_SPEC_OBJECT(thisArg) && %IsSloppyModeFunction(predicate)) {
|
|
thisArg = ToObject(thisArg);
|
|
}
|
|
|
|
for (var i = 0; i < length; i++) {
|
|
if (i in array) {
|
|
var element = array[i];
|
|
if (%_CallFunction(thisArg, element, i, array, predicate)) {
|
|
return i;
|
|
}
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
|
|
// ES6, draft 04-05-14, section 22.1.3.6
|
|
function ArrayFill(value /* [, start [, end ] ] */) { // length == 1
|
|
CHECK_OBJECT_COERCIBLE(this, "Array.prototype.fill");
|
|
|
|
var array = ToObject(this);
|
|
var length = TO_UINT32(array.length);
|
|
|
|
var i = 0;
|
|
var end = length;
|
|
|
|
if (%_ArgumentsLength() > 1) {
|
|
i = %_Arguments(1);
|
|
i = IS_UNDEFINED(i) ? 0 : TO_INTEGER(i);
|
|
if (%_ArgumentsLength() > 2) {
|
|
end = %_Arguments(2);
|
|
end = IS_UNDEFINED(end) ? length : TO_INTEGER(end);
|
|
}
|
|
}
|
|
|
|
if (i < 0) {
|
|
i += length;
|
|
if (i < 0) i = 0;
|
|
} else {
|
|
if (i > length) i = length;
|
|
}
|
|
|
|
if (end < 0) {
|
|
end += length;
|
|
if (end < 0) end = 0;
|
|
} else {
|
|
if (end > length) end = length;
|
|
}
|
|
|
|
if ((end - i) > 0 && ObjectIsFrozen(array)) {
|
|
throw MakeTypeError("array_functions_on_frozen",
|
|
["Array.prototype.fill"]);
|
|
}
|
|
|
|
for (; i < end; i++)
|
|
array[i] = value;
|
|
return array;
|
|
}
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
function HarmonyArrayExtendArrayPrototype() {
|
|
%CheckIsBootstrapping();
|
|
|
|
// Set up the non-enumerable functions on the Array prototype object.
|
|
InstallFunctions($Array.prototype, DONT_ENUM, $Array(
|
|
"find", ArrayFind,
|
|
"findIndex", ArrayFindIndex,
|
|
"fill", ArrayFill
|
|
));
|
|
}
|
|
|
|
HarmonyArrayExtendArrayPrototype();
|