| Index: src/js/harmony-reflect.js
|
| diff --git a/src/js/harmony-reflect.js b/src/js/harmony-reflect.js
|
| index bbca0fef618ac5bd917239ff5a070ef94c3f6cfb..dcadad522f63455a2aa3fbd2f9e7d6a1dc2a92ee 100644
|
| --- a/src/js/harmony-reflect.js
|
| +++ b/src/js/harmony-reflect.js
|
| @@ -23,7 +23,7 @@ utils.Import(function(from) {
|
| // -------------------------------------------------------------------
|
|
|
| function ReflectEnumerate(obj) {
|
| - if (!IS_SPEC_OBJECT(obj))
|
| + if (!IS_RECEIVER(obj))
|
| throw MakeTypeError(kCalledOnNonObject, "Reflect.enumerate")
|
| return (function* () { for (var x in obj) yield x })();
|
| }
|
|
|