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, extrasUtils) { | 5 (function(global, utils, extrasUtils) { |
6 | 6 |
7 "use strict"; | 7 "use strict"; |
8 | 8 |
9 %CheckIsBootstrapping(); | 9 %CheckIsBootstrapping(); |
10 | 10 |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 "AddBoundMethod", | 184 "AddBoundMethod", |
185 "ArrayToString", | 185 "ArrayToString", |
186 "AsyncFunctionNext", | 186 "AsyncFunctionNext", |
187 "AsyncFunctionThrow", | 187 "AsyncFunctionThrow", |
188 "GetIterator", | 188 "GetIterator", |
189 "GetMethod", | 189 "GetMethod", |
190 "GlobalPromise", | 190 "GlobalPromise", |
191 "IntlParseDate", | 191 "IntlParseDate", |
192 "IntlParseNumber", | 192 "IntlParseNumber", |
193 "IsNaN", | 193 "IsNaN", |
| 194 "IsPromise", |
194 "MapEntries", | 195 "MapEntries", |
195 "MapIterator", | 196 "MapIterator", |
196 "MapIteratorNext", | 197 "MapIteratorNext", |
197 "MaxSimple", | 198 "MaxSimple", |
198 "MinSimple", | 199 "MinSimple", |
199 "NewPromiseCapability", | 200 "NewPromiseCapability", |
200 "NumberIsInteger", | 201 "NumberIsInteger", |
201 "PerformPromiseThen", | 202 "PerformPromiseThen", |
202 "PromiseCastResolved", | |
203 "PromiseThen", | 203 "PromiseThen", |
| 204 "PromiseCreate", |
204 "RegExpSubclassExecJS", | 205 "RegExpSubclassExecJS", |
205 "RegExpSubclassMatch", | 206 "RegExpSubclassMatch", |
206 "RegExpSubclassReplace", | 207 "RegExpSubclassReplace", |
207 "RegExpSubclassSearch", | 208 "RegExpSubclassSearch", |
208 "RegExpSubclassSplit", | 209 "RegExpSubclassSplit", |
209 "RegExpSubclassTest", | 210 "RegExpSubclassTest", |
210 "RejectPromise", | 211 "RejectPromise", |
| 212 "ResolvePromise", |
211 "SetIterator", | 213 "SetIterator", |
212 "SetIteratorNext", | 214 "SetIteratorNext", |
213 "SetValues", | 215 "SetValues", |
214 "ToLocaleLowerCaseI18N", | 216 "ToLocaleLowerCaseI18N", |
215 "ToLocaleUpperCaseI18N", | 217 "ToLocaleUpperCaseI18N", |
216 "ToLowerCaseI18N", | 218 "ToLowerCaseI18N", |
217 "ToPositiveInteger", | 219 "ToPositiveInteger", |
218 "ToUpperCaseI18N", | 220 "ToUpperCaseI18N", |
219 // From runtime: | 221 // From runtime: |
220 "is_concat_spreadable_symbol", | 222 "is_concat_spreadable_symbol", |
221 "iterator_symbol", | 223 "iterator_symbol", |
222 "promise_result_symbol", | 224 "promise_result_symbol", |
223 "promise_state_symbol", | 225 "promise_state_symbol", |
| 226 "promise_await_handler_symbol", |
| 227 "promise_handled_hint_symbol", |
224 "object_freeze", | 228 "object_freeze", |
225 "object_is_frozen", | 229 "object_is_frozen", |
226 "object_is_sealed", | 230 "object_is_sealed", |
227 "reflect_apply", | 231 "reflect_apply", |
228 "reflect_construct", | 232 "reflect_construct", |
229 "regexp_flags_symbol", | 233 "regexp_flags_symbol", |
230 "to_string_tag_symbol", | 234 "to_string_tag_symbol", |
231 "object_to_string", | 235 "object_to_string", |
232 "species_symbol", | 236 "species_symbol", |
233 "match_symbol", | 237 "match_symbol", |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 | 357 |
354 extrasUtils.uncurryThis = function uncurryThis(func) { | 358 extrasUtils.uncurryThis = function uncurryThis(func) { |
355 return function(thisArg, ...args) { | 359 return function(thisArg, ...args) { |
356 return %reflect_apply(func, thisArg, args); | 360 return %reflect_apply(func, thisArg, args); |
357 }; | 361 }; |
358 }; | 362 }; |
359 | 363 |
360 %ToFastProperties(extrasUtils); | 364 %ToFastProperties(extrasUtils); |
361 | 365 |
362 }) | 366 }) |
OLD | NEW |