OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
| 5 (function() { |
| 6 |
5 'use strict'; | 7 'use strict'; |
6 | 8 |
7 var $Reflect = global.Reflect; | 9 %CheckIsBootstrapping(); |
8 | 10 |
9 function SetUpReflect() { | 11 var GlobalReflect = global.Reflect; |
10 %CheckIsBootstrapping(); | |
11 | 12 |
12 InstallFunctions($Reflect, DONT_ENUM, [ | 13 InstallFunctions(GlobalReflect, DONT_ENUM, [ |
13 "apply", ReflectApply, | 14 "apply", $reflectApply, |
14 "construct", ReflectConstruct | 15 "construct", $reflectConstruct |
15 ]); | 16 ]); |
16 } | |
17 | 17 |
18 SetUpReflect(); | 18 })(); |
OLD | NEW |