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

Unified Diff: samples/total/src/Dartc.dart

Issue 8391009: Reroll r634 "Total now reads mortgage sample from server" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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: samples/total/src/Dartc.dart
diff --git a/samples/total/src/Dartc.dart b/samples/total/src/Dartc.dart
index 363bc2427468004b87f543150c0c58c1d67b9ba3..da4a5faa43883ab44ff1185f14bb745c05ae4b66 100644
--- a/samples/total/src/Dartc.dart
+++ b/samples/total/src/Dartc.dart
@@ -58,8 +58,8 @@ class Dartc {
// TODO(rchandia) increase read size when stream handling works better
int BUFSIZE = 1;
- _readAll(false, compiler.stdoutStream, new List<int>(BUFSIZE), messages);
- _readAll(false, compiler.stderrStream, new List<int>(BUFSIZE), messages);
+ _readAll(false, compiler.stdout, new List<int>(BUFSIZE), messages);
Dan Rice 2011/10/25 21:33:17 should this be stdout or stdoutStream?
rchandia 2011/10/27 14:46:48 It has been renamed recently (between the rollback
+ _readAll(false, compiler.stderr, new List<int>(BUFSIZE), messages);
Dan Rice 2011/10/25 21:33:17 should this be stderr or stderrStream?
rchandia 2011/10/27 14:46:48 ditto
}
}

Powered by Google App Engine
This is Rietveld 408576698