| Index: src/harmony-reflect.js
|
| diff --git a/src/harmony-reflect.js b/src/harmony-reflect.js
|
| index f900d70f29ee1165f2622fb794b35bfc52bc0ed4..b9ea45fcc9c99d571ca76451a8b2f31d57aa5226 100644
|
| --- a/src/harmony-reflect.js
|
| +++ b/src/harmony-reflect.js
|
| @@ -9,10 +9,10 @@ var $Reflect = global.Reflect;
|
| function SetUpReflect() {
|
| %CheckIsBootstrapping();
|
|
|
| - InstallFunctions($Reflect, DONT_ENUM, $Array(
|
| - "apply", ReflectApply,
|
| - "construct", ReflectConstruct
|
| - ));
|
| + InstallFunctions($Reflect, DONT_ENUM, [
|
| + "apply", ReflectApply,
|
| + "construct", ReflectConstruct
|
| + ]);
|
| }
|
|
|
| SetUpReflect();
|
|
|