Index: src/js/array.js |
diff --git a/src/js/array.js b/src/js/array.js |
index 5c13f22e10942a7a2d995014d5d02ed826555693..fca75a3f65f85f32e3300f3669f056793fbf7973 100644 |
--- a/src/js/array.js |
+++ b/src/js/array.js |
@@ -21,7 +21,6 @@ var MinSimple; |
var ObjectHasOwnProperty; |
var ObjectToString = utils.ImportNow("object_to_string"); |
var iteratorSymbol = utils.ImportNow("iterator_symbol"); |
-var speciesSymbol = utils.ImportNow("species_symbol"); |
var unscopablesSymbol = utils.ImportNow("unscopables_symbol"); |
utils.Import(function(from) { |
@@ -1490,12 +1489,6 @@ function ArrayOf(...args) { |
return array; |
} |
- |
-function ArraySpecies() { |
- return this; |
-} |
- |
- |
// ------------------------------------------------------------------- |
// Set up non-enumerable constructor property on the Array.prototype |
@@ -1578,8 +1571,6 @@ utils.InstallFunctions(GlobalArray.prototype, DONT_ENUM, [ |
%FunctionSetName(ArrayValues, "values"); |
-utils.InstallGetter(GlobalArray, speciesSymbol, ArraySpecies); |
- |
%FinishArrayPrototypeSetup(GlobalArray.prototype); |
// The internal Array prototype doesn't need to be fancy, since it's never |