| 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 var $arrayValues; | 5 var $arrayValues; |
| 6 | 6 |
| 7 (function(global, utils) { | 7 (function(global, utils) { |
| 8 | 8 |
| 9 "use strict"; | 9 "use strict"; |
| 10 | 10 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 | 163 |
| 164 // ------------------------------------------------------------------- | 164 // ------------------------------------------------------------------- |
| 165 // Exports | 165 // Exports |
| 166 | 166 |
| 167 utils.Export(function(to) { | 167 utils.Export(function(to) { |
| 168 to.ArrayIteratorCreateResultObject = CreateIteratorResultObject; | 168 to.ArrayIteratorCreateResultObject = CreateIteratorResultObject; |
| 169 }); | 169 }); |
| 170 | 170 |
| 171 $arrayValues = ArrayValues; | 171 $arrayValues = ArrayValues; |
| 172 | 172 |
| 173 utils.ExportToRuntime(function(to) { | 173 %InstallToContext(["array_values_iterator", ArrayValues]); |
| 174 to["array_values_iterator"] = ArrayValues; | |
| 175 }); | |
| 176 | 174 |
| 177 }) | 175 }) |
| OLD | NEW |