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

Unified Diff: runtime/vm/object_store.h

Issue 1965493004: Canonicalize generic types in an isolate specific hash table (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address-merge-conflicts Created 4 years, 7 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 | « runtime/vm/object_service.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index eb868fb767748896dcf44ee31ac74d08279da9b3..56ee2b0e1cfe2c218cf64bfcf332a7d3df85f397 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -247,6 +247,13 @@ class ObjectStore {
RawArray* symbol_table() const { return symbol_table_; }
void set_symbol_table(const Array& value) { symbol_table_ = value.raw(); }
+ RawArray* canonical_types() const {
+ return canonical_types_;
+ }
+ void set_canonical_types(const Array& value) {
+ canonical_types_ = value.raw();
+ }
+
RawArray* canonical_type_arguments() const {
return canonical_type_arguments_;
}
@@ -536,6 +543,7 @@ class ObjectStore {
RawClass* error_class_;
RawClass* weak_property_class_;
RawArray* symbol_table_;
+ RawArray* canonical_types_;
RawArray* canonical_type_arguments_;
RawLibrary* async_library_;
RawLibrary* builtin_library_;
« no previous file with comments | « runtime/vm/object_service.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698