| 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 var $getHash; | 5 var $getHash; |
| 6 var $getExistingHash; | 6 var $getExistingHash; |
| 7 | 7 |
| 8 (function(global, utils) { | 8 (function(global, utils) { |
| 9 "use strict"; | 9 "use strict"; |
| 10 | 10 |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 "map_has", MapHas, | 495 "map_has", MapHas, |
| 496 "map_delete", MapDelete, | 496 "map_delete", MapDelete, |
| 497 "set_add", SetAdd, | 497 "set_add", SetAdd, |
| 498 "set_has", SetHas, | 498 "set_has", SetHas, |
| 499 "set_delete", SetDelete, | 499 "set_delete", SetDelete, |
| 500 "map_from_array", MapFromArray, | 500 "map_from_array", MapFromArray, |
| 501 "set_from_array",SetFromArray, | 501 "set_from_array",SetFromArray, |
| 502 ]); | 502 ]); |
| 503 | 503 |
| 504 }) | 504 }) |
| OLD | NEW |