| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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(global, utils) { | 5 (function(global, utils) { |
| 6 | 6 |
| 7 "use strict"; | 7 "use strict"; |
| 8 | 8 |
| 9 %CheckIsBootstrapping(); | 9 %CheckIsBootstrapping(); |
| 10 | 10 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "InnerArraySome", | 170 "InnerArraySome", |
| 171 "InnerArraySort", | 171 "InnerArraySort", |
| 172 "InnerArrayToLocaleString", | 172 "InnerArrayToLocaleString", |
| 173 "IsNaN", | 173 "IsNaN", |
| 174 "MathMax", | 174 "MathMax", |
| 175 "MathMin", | 175 "MathMin", |
| 176 "ObjectIsFrozen", | 176 "ObjectIsFrozen", |
| 177 "ObjectDefineProperty", | 177 "ObjectDefineProperty", |
| 178 "OwnPropertyKeys", | 178 "OwnPropertyKeys", |
| 179 "ToNameArray", | 179 "ToNameArray", |
| 180 "TypedArray", |
| 181 "TypedArrayPrototype", |
| 180 ]; | 182 ]; |
| 181 experimental_exports = {}; | 183 experimental_exports = {}; |
| 182 %OptimizeObjectForAddingMultipleProperties( | 184 %OptimizeObjectForAddingMultipleProperties( |
| 183 experimental_exports, expose_to_experimental.length); | 185 experimental_exports, expose_to_experimental.length); |
| 184 for (var key of expose_to_experimental) { | 186 for (var key of expose_to_experimental) { |
| 185 experimental_exports[key] = container[key]; | 187 experimental_exports[key] = container[key]; |
| 186 } | 188 } |
| 187 %ToFastProperties(experimental_exports); | 189 %ToFastProperties(experimental_exports); |
| 188 container = UNDEFINED; | 190 container = UNDEFINED; |
| 189 | 191 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "InstallConstants", InstallConstants, | 225 "InstallConstants", InstallConstants, |
| 224 "InstallFunctions", InstallFunctions, | 226 "InstallFunctions", InstallFunctions, |
| 225 "InstallGetter", InstallGetter, | 227 "InstallGetter", InstallGetter, |
| 226 "InstallGetterSetter", InstallGetterSetter, | 228 "InstallGetterSetter", InstallGetterSetter, |
| 227 "SetUpLockedPrototype", SetUpLockedPrototype, | 229 "SetUpLockedPrototype", SetUpLockedPrototype, |
| 228 "PostNatives", PostNatives, | 230 "PostNatives", PostNatives, |
| 229 "PostExperimentals", PostExperimentals, | 231 "PostExperimentals", PostExperimentals, |
| 230 ]); | 232 ]); |
| 231 | 233 |
| 232 }) | 234 }) |
| OLD | NEW |