Chromium Code Reviews| Index: src/harmony-spread.js |
| diff --git a/src/harmony-spread.js b/src/harmony-spread.js |
| index 48972fad08ec48ed37bef4b8a04d56916da56a55..8bf47e33aa6144223e535edcac07ffa05dbf8b67 100644 |
| --- a/src/harmony-spread.js |
| +++ b/src/harmony-spread.js |
| @@ -22,7 +22,7 @@ function SpreadArguments() { |
| function SpreadIterable(collection) { |
| if (IS_NULL_OR_UNDEFINED(collection)) { |
| - throw MakeTypeError("not_iterable", [collection]); |
| + throw MakeTypeError(kNotIterable, collection); |
| } |
| var args = new InternalArray(); |