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

Unified Diff: runtime/vm/object.h

Issue 211283004: Support Types in instance-ref/instance-view (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 0789c0e3c1d812a102af3864f812e26df9ca46a2..c49017075f5dce2d2b2057f94e6e871291e5ee38 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -4075,6 +4075,9 @@ class Instance : public Object {
static RawInstance* New(const Class& cls, Heap::Space space = Heap::kNew);
+ protected:
+ virtual void PrintToJSONObjectCommon(JSONObject* jsobj, bool ref) const;
+
private:
RawObject** FieldAddrAtOffset(intptr_t offset) const {
ASSERT(IsValidFieldOffset(offset));

Powered by Google App Engine
This is Rietveld 408576698