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

Unified Diff: runtime/vm/object_store.h

Issue 8773026: Canonicalize TypeArguments. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/object.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
===================================================================
--- runtime/vm/object_store.h (revision 2130)
+++ runtime/vm/object_store.h (working copy)
@@ -225,6 +225,13 @@
RawArray* symbol_table() const { return symbol_table_; }
void set_symbol_table(const Array& value) { symbol_table_ = value.raw(); }
+ RawArray* canonical_type_arguments() const {
+ return canonical_type_arguments_;
+ }
+ void set_canonical_type_arguments(const Array& value) {
+ canonical_type_arguments_ = value.raw();
+ }
+
RawLibrary* core_library() const { return core_library_; }
void set_core_library(const Library& value) {
core_library_ = value.raw();
@@ -326,6 +333,7 @@
RawBool* false_value_;
RawArray* empty_array_;
RawArray* symbol_table_;
+ RawArray* canonical_type_arguments_;
RawLibrary* core_library_;
RawLibrary* core_impl_library_;
RawLibrary* native_wrappers_library_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698