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

Side by Side Diff: src/bootstrapper.cc

Issue 770333005: Implement the `RegExp.prototype.flags` getter (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 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 | « BUILD.gn ('k') | src/harmony-regexp.js » ('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/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/extensions/externalize-string-extension.h" 9 #include "src/extensions/externalize-string-extension.h"
10 #include "src/extensions/free-buffer-extension.h" 10 #include "src/extensions/free-buffer-extension.h"
(...skipping 2148 matching lines...) Expand 10 before | Expand all | Expand 10 after
2159 static const char* harmony_array_includes_natives[] = { 2159 static const char* harmony_array_includes_natives[] = {
2160 "native harmony-array-includes.js", NULL}; 2160 "native harmony-array-includes.js", NULL};
2161 static const char* harmony_proxies_natives[] = {"native proxy.js", NULL}; 2161 static const char* harmony_proxies_natives[] = {"native proxy.js", NULL};
2162 static const char* harmony_strings_natives[] = {"native harmony-string.js", 2162 static const char* harmony_strings_natives[] = {"native harmony-string.js",
2163 NULL}; 2163 NULL};
2164 static const char* harmony_classes_natives[] = {"native harmony-classes.js", 2164 static const char* harmony_classes_natives[] = {"native harmony-classes.js",
2165 NULL}; 2165 NULL};
2166 static const char* harmony_modules_natives[] = {NULL}; 2166 static const char* harmony_modules_natives[] = {NULL};
2167 static const char* harmony_scoping_natives[] = {NULL}; 2167 static const char* harmony_scoping_natives[] = {NULL};
2168 static const char* harmony_object_literals_natives[] = {NULL}; 2168 static const char* harmony_object_literals_natives[] = {NULL};
2169 static const char* harmony_regexps_natives[] = {NULL}; 2169 static const char* harmony_regexps_natives[] = {
2170 "native harmony-regexp.js", NULL};
2170 static const char* harmony_arrow_functions_natives[] = {NULL}; 2171 static const char* harmony_arrow_functions_natives[] = {NULL};
2171 static const char* harmony_numeric_literals_natives[] = {NULL}; 2172 static const char* harmony_numeric_literals_natives[] = {NULL};
2172 static const char* harmony_tostring_natives[] = {"native harmony-tostring.js", 2173 static const char* harmony_tostring_natives[] = {"native harmony-tostring.js",
2173 NULL}; 2174 NULL};
2174 static const char* harmony_templates_natives[] = { 2175 static const char* harmony_templates_natives[] = {
2175 "native harmony-templates.js", NULL}; 2176 "native harmony-templates.js", NULL};
2176 static const char* harmony_sloppy_natives[] = {NULL}; 2177 static const char* harmony_sloppy_natives[] = {NULL};
2177 static const char* harmony_unicode_natives[] = {NULL}; 2178 static const char* harmony_unicode_natives[] = {NULL};
2178 2179
2179 for (int i = ExperimentalNatives::GetDebuggerCount(); 2180 for (int i = ExperimentalNatives::GetDebuggerCount();
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
2823 return from + sizeof(NestingCounterType); 2824 return from + sizeof(NestingCounterType);
2824 } 2825 }
2825 2826
2826 2827
2827 // Called when the top-level V8 mutex is destroyed. 2828 // Called when the top-level V8 mutex is destroyed.
2828 void Bootstrapper::FreeThreadResources() { 2829 void Bootstrapper::FreeThreadResources() {
2829 DCHECK(!IsActive()); 2830 DCHECK(!IsActive());
2830 } 2831 }
2831 2832
2832 } } // namespace v8::internal 2833 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/harmony-regexp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698