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

Unified Diff: runtime/vm/object.h

Issue 178233003: Allocate instance closures similarly to regular closures, i.e. without a (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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/intermediate_language_x64.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 33072)
+++ runtime/vm/object.h (working copy)
@@ -1510,9 +1510,6 @@
RawClass* signature_class() const;
void set_signature_class(const Class& value) const;
- RawCode* closure_allocation_stub() const;
- void set_closure_allocation_stub(const Code& value) const;
-
void set_extracted_method_closure(const Function& function) const;
RawFunction* extracted_method_closure() const;
@@ -2007,11 +2004,6 @@
}
void set_implicit_static_closure(const Instance& closure) const;
- RawCode* closure_allocation_stub() const {
- return raw_ptr()->closure_allocation_stub_;
- }
- void set_closure_allocation_stub(const Code& value) const;
-
static RawClosureData* New();
FINAL_HEAP_OBJECT_IMPLEMENTATION(ClosureData, Object);
« no previous file with comments | « runtime/vm/intermediate_language_x64.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698