Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(764)

Side by Side Diff: src/bootstrapper.cc

Issue 1371963002: [es6] Ship rest parameters. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | src/flag-definitions.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/base/utils/random-number-generator.h" 9 #include "src/base/utils/random-number-generator.h"
10 #include "src/code-stubs.h" 10 #include "src/code-stubs.h"
(...skipping 1843 matching lines...) Expand 10 before | Expand all | Expand 10 after
1854 1854
1855 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_modules) 1855 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_modules)
1856 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_array_includes) 1856 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_array_includes)
1857 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_arrow_functions) 1857 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_arrow_functions)
1858 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_proxies) 1858 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_proxies)
1859 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy) 1859 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy)
1860 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_function) 1860 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_function)
1861 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_let) 1861 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_let)
1862 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_rest_parameters) 1862 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_rest_parameters)
1863 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_default_parameters) 1863 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_default_parameters)
1864 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_spreadcalls) 1864 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_spread_calls)
1865 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_destructuring) 1865 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_destructuring)
1866 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_object_observe) 1866 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_object_observe)
1867 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_spread_arrays) 1867 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_spread_arrays)
1868 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_new_target) 1868 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_new_target)
1869 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_concat_spreadable) 1869 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_concat_spreadable)
1870 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexps) 1870 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexps)
1871 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode_regexps) 1871 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode_regexps)
1872 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_tostring) 1872 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_tostring)
1873 1873
1874 1874
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after
2558 static const char* harmony_tostring_natives[] = {"native harmony-tostring.js", 2558 static const char* harmony_tostring_natives[] = {"native harmony-tostring.js",
2559 nullptr}; 2559 nullptr};
2560 static const char* harmony_sloppy_natives[] = {nullptr}; 2560 static const char* harmony_sloppy_natives[] = {nullptr};
2561 static const char* harmony_sloppy_function_natives[] = {nullptr}; 2561 static const char* harmony_sloppy_function_natives[] = {nullptr};
2562 static const char* harmony_sloppy_let_natives[] = {nullptr}; 2562 static const char* harmony_sloppy_let_natives[] = {nullptr};
2563 static const char* harmony_unicode_regexps_natives[] = {nullptr}; 2563 static const char* harmony_unicode_regexps_natives[] = {nullptr};
2564 static const char* harmony_rest_parameters_natives[] = {nullptr}; 2564 static const char* harmony_rest_parameters_natives[] = {nullptr};
2565 static const char* harmony_default_parameters_natives[] = {nullptr}; 2565 static const char* harmony_default_parameters_natives[] = {nullptr};
2566 static const char* harmony_reflect_natives[] = {"native harmony-reflect.js", 2566 static const char* harmony_reflect_natives[] = {"native harmony-reflect.js",
2567 nullptr}; 2567 nullptr};
2568 static const char* harmony_spreadcalls_natives[] = { 2568 static const char* harmony_spread_calls_natives[] = {
2569 "native harmony-spread.js", nullptr}; 2569 "native harmony-spread.js", nullptr};
2570 static const char* harmony_destructuring_natives[] = {nullptr}; 2570 static const char* harmony_destructuring_natives[] = {nullptr};
2571 static const char* harmony_object_observe_natives[] = { 2571 static const char* harmony_object_observe_natives[] = {
2572 "native harmony-object-observe.js", nullptr}; 2572 "native harmony-object-observe.js", nullptr};
2573 static const char* harmony_spread_arrays_natives[] = {nullptr}; 2573 static const char* harmony_spread_arrays_natives[] = {nullptr};
2574 static const char* harmony_sharedarraybuffer_natives[] = { 2574 static const char* harmony_sharedarraybuffer_natives[] = {
2575 "native harmony-sharedarraybuffer.js", "native harmony-atomics.js", NULL}; 2575 "native harmony-sharedarraybuffer.js", "native harmony-atomics.js", NULL};
2576 static const char* harmony_new_target_natives[] = {nullptr}; 2576 static const char* harmony_new_target_natives[] = {nullptr};
2577 static const char* harmony_concat_spreadable_natives[] = { 2577 static const char* harmony_concat_spreadable_natives[] = {
2578 "native harmony-concat-spreadable.js", nullptr}; 2578 "native harmony-concat-spreadable.js", nullptr};
(...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after
3271 } 3271 }
3272 3272
3273 3273
3274 // Called when the top-level V8 mutex is destroyed. 3274 // Called when the top-level V8 mutex is destroyed.
3275 void Bootstrapper::FreeThreadResources() { 3275 void Bootstrapper::FreeThreadResources() {
3276 DCHECK(!IsActive()); 3276 DCHECK(!IsActive());
3277 } 3277 }
3278 3278
3279 } // namespace internal 3279 } // namespace internal
3280 } // namespace v8 3280 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | src/flag-definitions.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698