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

Side by Side Diff: src/bootstrapper.cc

Issue 1309813007: [es6] implement destructuring assignment (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase*** oops Created 5 years 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 | « src/bailout-reason.h ('k') | src/compiler/ast-graph-builder.cc » ('j') | no next file with comments »
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/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 1960 matching lines...) Expand 10 before | Expand all | Expand 10 after
1971 void Genesis::InitializeGlobal_##id() {} 1971 void Genesis::InitializeGlobal_##id() {}
1972 1972
1973 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_modules) 1973 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_modules)
1974 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_array_includes) 1974 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_array_includes)
1975 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy) 1975 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy)
1976 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_function) 1976 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_function)
1977 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_let) 1977 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_let)
1978 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_rest_parameters) 1978 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_rest_parameters)
1979 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_default_parameters) 1979 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_default_parameters)
1980 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_destructuring_bind) 1980 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_destructuring_bind)
1981 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_destructuring_assignment)
1981 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_object_observe) 1982 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_object_observe)
1982 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexps) 1983 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexps)
1983 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode_regexps) 1984 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode_regexps)
1984 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_completion) 1985 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_completion)
1985 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_tolength) 1986 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_tolength)
1986 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_do_expressions) 1987 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_do_expressions)
1987 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexp_lookbehind) 1988 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexp_lookbehind)
1988 1989
1989 1990
1990 void InstallPublicSymbol(Factory* factory, Handle<Context> native_context, 1991 void InstallPublicSymbol(Factory* factory, Handle<Context> native_context,
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
2462 static const char* harmony_tostring_natives[] = {nullptr}; 2463 static const char* harmony_tostring_natives[] = {nullptr};
2463 static const char* harmony_sloppy_natives[] = {nullptr}; 2464 static const char* harmony_sloppy_natives[] = {nullptr};
2464 static const char* harmony_sloppy_function_natives[] = {nullptr}; 2465 static const char* harmony_sloppy_function_natives[] = {nullptr};
2465 static const char* harmony_sloppy_let_natives[] = {nullptr}; 2466 static const char* harmony_sloppy_let_natives[] = {nullptr};
2466 static const char* harmony_unicode_regexps_natives[] = {nullptr}; 2467 static const char* harmony_unicode_regexps_natives[] = {nullptr};
2467 static const char* harmony_rest_parameters_natives[] = {nullptr}; 2468 static const char* harmony_rest_parameters_natives[] = {nullptr};
2468 static const char* harmony_default_parameters_natives[] = {nullptr}; 2469 static const char* harmony_default_parameters_natives[] = {nullptr};
2469 static const char* harmony_reflect_natives[] = {"native harmony-reflect.js", 2470 static const char* harmony_reflect_natives[] = {"native harmony-reflect.js",
2470 nullptr}; 2471 nullptr};
2471 static const char* harmony_destructuring_bind_natives[] = {nullptr}; 2472 static const char* harmony_destructuring_bind_natives[] = {nullptr};
2473 static const char* harmony_destructuring_assignment_natives[] = {nullptr};
2472 static const char* harmony_object_observe_natives[] = { 2474 static const char* harmony_object_observe_natives[] = {
2473 "native harmony-object-observe.js", nullptr}; 2475 "native harmony-object-observe.js", nullptr};
2474 static const char* harmony_sharedarraybuffer_natives[] = { 2476 static const char* harmony_sharedarraybuffer_natives[] = {
2475 "native harmony-sharedarraybuffer.js", "native harmony-atomics.js", NULL}; 2477 "native harmony-sharedarraybuffer.js", "native harmony-atomics.js", NULL};
2476 static const char* harmony_concat_spreadable_natives[] = {nullptr}; 2478 static const char* harmony_concat_spreadable_natives[] = {nullptr};
2477 static const char* harmony_simd_natives[] = {"native harmony-simd.js", 2479 static const char* harmony_simd_natives[] = {"native harmony-simd.js",
2478 nullptr}; 2480 nullptr};
2479 static const char* harmony_tolength_natives[] = {nullptr}; 2481 static const char* harmony_tolength_natives[] = {nullptr};
2480 static const char* harmony_completion_natives[] = {nullptr}; 2482 static const char* harmony_completion_natives[] = {nullptr};
2481 static const char* harmony_do_expressions_natives[] = {nullptr}; 2483 static const char* harmony_do_expressions_natives[] = {nullptr};
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
3149 } 3151 }
3150 3152
3151 3153
3152 // Called when the top-level V8 mutex is destroyed. 3154 // Called when the top-level V8 mutex is destroyed.
3153 void Bootstrapper::FreeThreadResources() { 3155 void Bootstrapper::FreeThreadResources() {
3154 DCHECK(!IsActive()); 3156 DCHECK(!IsActive());
3155 } 3157 }
3156 3158
3157 } // namespace internal 3159 } // namespace internal
3158 } // namespace v8 3160 } // namespace v8
OLDNEW
« no previous file with comments | « src/bailout-reason.h ('k') | src/compiler/ast-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698