OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 #include "src/bootstrapper.h" | 5 #include "src/bootstrapper.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/api-natives.h" | 8 #include "src/api-natives.h" |
9 #include "src/code-stubs.h" | 9 #include "src/code-stubs.h" |
10 #include "src/extensions/externalize-string-extension.h" | 10 #include "src/extensions/externalize-string-extension.h" |
(...skipping 2644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2655 | 2655 |
2656 bool Genesis::InstallExperimentalNatives() { | 2656 bool Genesis::InstallExperimentalNatives() { |
2657 static const char* harmony_proxies_natives[] = {"native proxy.js", nullptr}; | 2657 static const char* harmony_proxies_natives[] = {"native proxy.js", nullptr}; |
2658 static const char* harmony_modules_natives[] = {nullptr}; | 2658 static const char* harmony_modules_natives[] = {nullptr}; |
2659 static const char* harmony_regexps_natives[] = {"native harmony-regexp.js", | 2659 static const char* harmony_regexps_natives[] = {"native harmony-regexp.js", |
2660 nullptr}; | 2660 nullptr}; |
2661 static const char* harmony_tostring_natives[] = {nullptr}; | 2661 static const char* harmony_tostring_natives[] = {nullptr}; |
2662 static const char* harmony_sloppy_natives[] = {nullptr}; | 2662 static const char* harmony_sloppy_natives[] = {nullptr}; |
2663 static const char* harmony_sloppy_function_natives[] = {nullptr}; | 2663 static const char* harmony_sloppy_function_natives[] = {nullptr}; |
2664 static const char* harmony_sloppy_let_natives[] = {nullptr}; | 2664 static const char* harmony_sloppy_let_natives[] = {nullptr}; |
2665 static const char* harmony_unicode_regexps_natives[] = {nullptr}; | 2665 static const char* harmony_unicode_regexps_natives[] = { |
| 2666 "native harmony-unicode-regexps.js", nullptr}; |
2666 static const char* harmony_default_parameters_natives[] = {nullptr}; | 2667 static const char* harmony_default_parameters_natives[] = {nullptr}; |
2667 static const char* harmony_reflect_natives[] = {"native harmony-reflect.js", | 2668 static const char* harmony_reflect_natives[] = {"native harmony-reflect.js", |
2668 nullptr}; | 2669 nullptr}; |
2669 static const char* harmony_destructuring_bind_natives[] = {nullptr}; | 2670 static const char* harmony_destructuring_bind_natives[] = {nullptr}; |
2670 static const char* harmony_destructuring_assignment_natives[] = {nullptr}; | 2671 static const char* harmony_destructuring_assignment_natives[] = {nullptr}; |
2671 static const char* harmony_object_observe_natives[] = { | 2672 static const char* harmony_object_observe_natives[] = { |
2672 "native harmony-object-observe.js", nullptr}; | 2673 "native harmony-object-observe.js", nullptr}; |
2673 static const char* harmony_sharedarraybuffer_natives[] = { | 2674 static const char* harmony_sharedarraybuffer_natives[] = { |
2674 "native harmony-sharedarraybuffer.js", "native harmony-atomics.js", NULL}; | 2675 "native harmony-sharedarraybuffer.js", "native harmony-atomics.js", NULL}; |
2675 static const char* harmony_concat_spreadable_natives[] = {nullptr}; | 2676 static const char* harmony_concat_spreadable_natives[] = {nullptr}; |
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3353 } | 3354 } |
3354 | 3355 |
3355 | 3356 |
3356 // Called when the top-level V8 mutex is destroyed. | 3357 // Called when the top-level V8 mutex is destroyed. |
3357 void Bootstrapper::FreeThreadResources() { | 3358 void Bootstrapper::FreeThreadResources() { |
3358 DCHECK(!IsActive()); | 3359 DCHECK(!IsActive()); |
3359 } | 3360 } |
3360 | 3361 |
3361 } // namespace internal | 3362 } // namespace internal |
3362 } // namespace v8 | 3363 } // namespace v8 |
OLD | NEW |