| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 var $proxyDelegateCallAndConstruct; | 5 var $proxyDelegateCallAndConstruct; |
| 6 var $proxyDerivedGetTrap; | 6 var $proxyDerivedGetTrap; |
| 7 var $proxyDerivedHasTrap; | 7 var $proxyDerivedHasTrap; |
| 8 var $proxyDerivedHasOwnTrap; | 8 var $proxyDerivedHasOwnTrap; |
| 9 var $proxyDerivedKeysTrap; | 9 var $proxyDerivedKeysTrap; |
| 10 var $proxyDerivedSetTrap; | 10 var $proxyDerivedSetTrap; |
| 11 var $proxyEnumerate; | 11 var $proxyEnumerate; |
| 12 | 12 |
| 13 (function(global, utils) { | 13 (function(global, shared, exports) { |
| 14 | 14 |
| 15 "use strict"; | 15 "use strict"; |
| 16 | 16 |
| 17 %CheckIsBootstrapping(); | 17 %CheckIsBootstrapping(); |
| 18 | 18 |
| 19 var GlobalFunction = global.Function; | 19 var GlobalFunction = global.Function; |
| 20 var GlobalObject = global.Object; | 20 var GlobalObject = global.Object; |
| 21 | 21 |
| 22 // ------------------------------------------------------------------- | 22 // ------------------------------------------------------------------- |
| 23 | 23 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 192 |
| 193 $proxyDelegateCallAndConstruct = DelegateCallAndConstruct; | 193 $proxyDelegateCallAndConstruct = DelegateCallAndConstruct; |
| 194 $proxyDerivedGetTrap = DerivedGetTrap; | 194 $proxyDerivedGetTrap = DerivedGetTrap; |
| 195 $proxyDerivedHasTrap = DerivedHasTrap; | 195 $proxyDerivedHasTrap = DerivedHasTrap; |
| 196 $proxyDerivedHasOwnTrap = DerivedHasOwnTrap; | 196 $proxyDerivedHasOwnTrap = DerivedHasOwnTrap; |
| 197 $proxyDerivedKeysTrap = DerivedKeysTrap; | 197 $proxyDerivedKeysTrap = DerivedKeysTrap; |
| 198 $proxyDerivedSetTrap = DerivedSetTrap; | 198 $proxyDerivedSetTrap = DerivedSetTrap; |
| 199 $proxyEnumerate = ProxyEnumerate; | 199 $proxyEnumerate = ProxyEnumerate; |
| 200 | 200 |
| 201 }) | 201 }) |
| OLD | NEW |