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

Unified Diff: runtime/vm/object_store.h

Issue 22425006: Fix equality of implicit closures in the Dart VM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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.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 26064)
+++ runtime/vm/object_store.h (working copy)
@@ -66,6 +66,11 @@
function_type_ = value.raw();
}
+ RawType* function_impl_type() const { return function_impl_type_; }
+ void set_function_impl_type(const Type& value) {
+ function_impl_type_ = value.raw();
+ }
+
RawClass* type_class() const { return type_class_; }
void set_type_class(const Class& value) { type_class_ = value.raw(); }
@@ -426,6 +431,7 @@
RawClass* null_class_;
RawType* null_type_;
RawType* function_type_;
+ RawType* function_impl_type_;
RawClass* type_class_;
RawClass* type_parameter_class_;
RawClass* bounded_type_class_;
« 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