Index: src/js/typedarray.js |
diff --git a/src/js/typedarray.js b/src/js/typedarray.js |
index 488e94912114eab13691a82e2231d2d19782c02a..3a5cb847556176c9ea9d6672b8dfd3a0e0fde569 100644 |
--- a/src/js/typedarray.js |
+++ b/src/js/typedarray.js |
@@ -41,7 +41,6 @@ var SpeciesConstructor; |
var ToPositiveInteger; |
var ToIndex; |
var iteratorSymbol = utils.ImportNow("iterator_symbol"); |
-var speciesSymbol = utils.ImportNow("species_symbol"); |
var toStringTagSymbol = utils.ImportNow("to_string_tag_symbol"); |
macro TYPED_ARRAYS(FUNCTION) |
@@ -847,10 +846,6 @@ function TypedArrayConstructor() { |
throw %make_type_error(kConstructAbstractClass, "TypedArray"); |
} |
-function TypedArraySpecies() { |
- return this; |
-} |
- |
// ------------------------------------------------------------------- |
%SetCode(GlobalTypedArray, TypedArrayConstructor); |
@@ -858,7 +853,6 @@ utils.InstallFunctions(GlobalTypedArray, DONT_ENUM, [ |
"from", TypedArrayFrom, |
"of", TypedArrayOf |
]); |
-utils.InstallGetter(GlobalTypedArray, speciesSymbol, TypedArraySpecies); |
utils.InstallGetter(GlobalTypedArray.prototype, toStringTagSymbol, |
TypedArrayGetToStringTag); |
utils.InstallFunctions(GlobalTypedArray.prototype, DONT_ENUM, [ |