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

Unified Diff: src/isolate.h

Issue 2831016: [Isolates] Static mutable data of Scanner class moved to ScannerCharacterClasses / Isolate. (Closed)
Patch Set: . Created 10 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/heap.cc ('k') | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index 327489756308f54e36bae15b21fcb426ac84c357..ce54e319971e6caef1c9b13a9f02e9347ad91a77 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -45,6 +45,7 @@ class Deserializer;
class HandleScopeImplementer;
class SaveContext;
class StubCache;
+class ScannerCharacterClasses;
class ThreadLocalTop BASE_EMBEDDED {
public:
@@ -224,6 +225,10 @@ class Isolate {
}
Zone* zone() { return &zone_; }
+ ScannerCharacterClasses* scanner_character_classes() {
+ return scanner_character_classes_;
+ }
+
// SerializerDeserializer state.
static const int kPartialSnapshotCacheCapacity = 1300;
@@ -268,6 +273,7 @@ class Isolate {
DescriptorLookupCache* descriptor_lookup_cache_;
v8::ImplementationUtilities::HandleScopeData handle_scope_data_;
HandleScopeImplementer* handle_scope_implementer_;
+ ScannerCharacterClasses* scanner_character_classes_;
Zone zone_;
#define GLOBAL_BACKING_STORE(type, name, initialvalue) \
« no previous file with comments | « src/heap.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698