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

Unified Diff: runtime/vm/object.h

Issue 19856003: Inline create parameter mirror list functionality. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 4e798942478d776cb77a86293a56fcc6ad8d6e6d..db46ba5ac5c632fedd5ac0359c87419167bd52c1 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -5896,6 +5896,9 @@ class MirrorReference : public Instance {
static RawMirrorReference* New(Heap::Space space = Heap::kNew);
+ static RawMirrorReference* New(const Object& referent,
+ Heap::Space space = Heap::kNew);
+
static intptr_t InstanceSize() {
return RoundedAllocationSize(sizeof(RawMirrorReference));
}

Powered by Google App Engine
This is Rietveld 408576698