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

Unified Diff: runtime/vm/object_store.h

Issue 1584223006: Remove signature classes from the VM. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: sync Created 4 years, 11 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
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index db57663a656bd342b55413324302920a248cada7..2b689025cb964ecd56706ae7f31a94357adffefd 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -67,9 +67,9 @@ class ObjectStore {
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* closure_class() const { return closure_class_; }
+ void set_closure_class(const Class& value) {
+ closure_class_ = value.raw();
}
RawType* number_type() const { return number_type_; }
@@ -504,7 +504,7 @@ class ObjectStore {
RawClass* null_class_;
RawType* null_type_;
RawType* function_type_;
- RawType* function_impl_type_;
+ RawClass* closure_class_;
RawType* number_type_;
RawType* int_type_;
RawClass* integer_implementation_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