| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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() { | 5 (function(global, shared, exports) { |
| 6 | 6 |
| 7 "use strict"; | 7 "use strict"; |
| 8 | 8 |
| 9 %CheckIsBootstrapping(); | 9 %CheckIsBootstrapping(); |
| 10 | 10 |
| 11 var GlobalMap = global.Map; | 11 var GlobalMap = global.Map; |
| 12 var GlobalObject = global.Object; | 12 var GlobalObject = global.Object; |
| 13 var GlobalSet = global.Set; | 13 var GlobalSet = global.Set; |
| 14 | 14 |
| 15 // ------------------------------------------------------------------- | 15 // ------------------------------------------------------------------- |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 $installGetter(GlobalMap.prototype, "size", MapGetSize); | 430 $installGetter(GlobalMap.prototype, "size", MapGetSize); |
| 431 $installFunctions(GlobalMap.prototype, DONT_ENUM, [ | 431 $installFunctions(GlobalMap.prototype, DONT_ENUM, [ |
| 432 "get", MapGet, | 432 "get", MapGet, |
| 433 "set", MapSet, | 433 "set", MapSet, |
| 434 "has", MapHas, | 434 "has", MapHas, |
| 435 "delete", MapDelete, | 435 "delete", MapDelete, |
| 436 "clear", MapClearJS, | 436 "clear", MapClearJS, |
| 437 "forEach", MapForEach | 437 "forEach", MapForEach |
| 438 ]); | 438 ]); |
| 439 | 439 |
| 440 })(); | 440 }) |
| OLD | NEW |