| 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 'use strict'; | 5 'use strict'; |
| 6 | 6 |
| 7 var $Reflect = global.Reflect; | 7 var $Reflect = global.Reflect; |
| 8 | 8 |
| 9 function SetUpReflect() { | 9 function SetUpReflect() { |
| 10 %CheckIsBootstrapping(); | 10 %CheckIsBootstrapping(); |
| 11 | 11 |
| 12 InstallFunctions($Reflect, DONT_ENUM, $Array( | 12 InstallFunctions($Reflect, DONT_ENUM, [ |
| 13 "apply", ReflectApply, | 13 "apply", ReflectApply, |
| 14 "construct", ReflectConstruct | 14 "construct", ReflectConstruct |
| 15 )); | 15 ]); |
| 16 } | 16 } |
| 17 | 17 |
| 18 SetUpReflect(); | 18 SetUpReflect(); |
| OLD | NEW |