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

Unified Diff: runtime/vm/object.h

Issue 553973004: Add support for TokenStream, LocalVarDescriptors, and PcDescriptors over service (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | « no previous file | 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
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 6bef907ae75b4b85787590a7f2be10f3ed827d71..9eb987d19117f5d39b41f3463853a5ec5596e477 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -3093,6 +3093,8 @@ class LocalVarDescriptors : public Object {
static RawLocalVarDescriptors* New(intptr_t num_variables);
+ static const char* KindToStr(intptr_t kind);
+
private:
FINAL_HEAP_OBJECT_IMPLEMENTATION(LocalVarDescriptors, Object);
friend class Class;
@@ -3146,7 +3148,7 @@ class PcDescriptors : public Object {
static void PrintHeaderString();
- void PrintToJSONObject(JSONObject* jsobj) const;
+ void PrintToJSONObject(JSONObject* jsobj, bool ref) const;
// We would have a VisitPointers function here to traverse the
// pc descriptors table to visit objects if any in the table.
« no previous file with comments | « no previous file | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698