Index: src/harmony-reflect.js |
diff --git a/src/harmony-reflect.js b/src/harmony-reflect.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f900d70f29ee1165f2622fb794b35bfc52bc0ed4 |
--- /dev/null |
+++ b/src/harmony-reflect.js |
@@ -0,0 +1,18 @@ |
+// Copyright 2013 the V8 project authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+'use strict'; |
+ |
+var $Reflect = global.Reflect; |
+ |
+function SetUpReflect() { |
+ %CheckIsBootstrapping(); |
+ |
+ InstallFunctions($Reflect, DONT_ENUM, $Array( |
+ "apply", ReflectApply, |
+ "construct", ReflectConstruct |
+ )); |
+} |
+ |
+SetUpReflect(); |