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

Unified Diff: runtime/vm/json_stream.h

Issue 24255013: - Write the coverage data to a file instead of printing to stdout. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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
Index: runtime/vm/json_stream.h
===================================================================
--- runtime/vm/json_stream.h (revision 27712)
+++ runtime/vm/json_stream.h (working copy)
@@ -19,6 +19,7 @@
explicit JSONStream(intptr_t buf_size = 256);
~JSONStream();
+ TextBuffer* buffer() { return &buffer_; }
siva 2013/09/20 19:51:45 TextBuffer* buffer() const { return &buffer_; }
Ivan Posva 2013/09/20 21:37:07 Unfortunately that is not possible because the emb
const char* ToCString() { return buffer_.buf(); }
siva 2013/09/20 19:51:45 Ditto here.
Ivan Posva 2013/09/20 21:37:07 Ditto here.
void SetArguments(const char** arguments, intptr_t num_arguments);
« runtime/vm/coverage.cc ('K') | « runtime/vm/isolate.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698