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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 // Whitelist of exports from normal natives to experimental natives. | 155 // Whitelist of exports from normal natives to experimental natives. |
156 var expose_to_experimental = [ | 156 var expose_to_experimental = [ |
157 "GetIterator", | 157 "GetIterator", |
158 "GetMethod", | 158 "GetMethod", |
159 "InnerArrayEvery", | 159 "InnerArrayEvery", |
160 "InnerArrayFilter", | 160 "InnerArrayFilter", |
161 "InnerArrayForEach", | 161 "InnerArrayForEach", |
162 "InnerArrayIndexOf", | 162 "InnerArrayIndexOf", |
163 "InnerArrayLastIndexOf", | 163 "InnerArrayLastIndexOf", |
164 "InnerArrayMap", | 164 "InnerArrayMap", |
| 165 "InnerArrayReduce", |
| 166 "InnerArrayReduceRight", |
165 "InnerArrayReverse", | 167 "InnerArrayReverse", |
166 "InnerArraySome", | 168 "InnerArraySome", |
167 "InnerArraySort", | 169 "InnerArraySort", |
168 "IsNaN", | 170 "IsNaN", |
169 "MathMax", | 171 "MathMax", |
170 "MathMin", | 172 "MathMin", |
171 "ObjectIsFrozen", | 173 "ObjectIsFrozen", |
172 "OwnPropertyKeys", | 174 "OwnPropertyKeys", |
173 "ToNameArray", | 175 "ToNameArray", |
174 ]; | 176 ]; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 "InstallConstants", InstallConstants, | 219 "InstallConstants", InstallConstants, |
218 "InstallFunctions", InstallFunctions, | 220 "InstallFunctions", InstallFunctions, |
219 "InstallGetter", InstallGetter, | 221 "InstallGetter", InstallGetter, |
220 "InstallGetterSetter", InstallGetterSetter, | 222 "InstallGetterSetter", InstallGetterSetter, |
221 "SetUpLockedPrototype", SetUpLockedPrototype, | 223 "SetUpLockedPrototype", SetUpLockedPrototype, |
222 "PostNatives", PostNatives, | 224 "PostNatives", PostNatives, |
223 "PostExperimentals", PostExperimentals, | 225 "PostExperimentals", PostExperimentals, |
224 ]); | 226 ]); |
225 | 227 |
226 }) | 228 }) |
OLD | NEW |