Index: src/harmony-array.js |
diff --git a/src/harmony-array.js b/src/harmony-array.js |
index b24caff9a9f3cd1129d264cf3f7581ad40a39056..63c0d43725859d5df08b52c00da0dc3a778885fc 100644 |
--- a/src/harmony-array.js |
+++ b/src/harmony-array.js |
@@ -213,7 +213,7 @@ function ArrayFrom(arrayLike, mapfn, receiver) { |
var next = iterator.next(); |
if (!IS_OBJECT(next)) { |
- throw MakeTypeError("iterator_result_not_an_object", [next]); |
+ throw MakeTypeError(kIteratorResultNotAnObject, next); |
} |
if (next.done) { |