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