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

Side by Side Diff: packages/intl/test/message_extraction/print_to_list.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 /// This provides a way for a test to print to an internal list so the
2 /// results can be verified rather than writing to and reading a file.
3
4 library print_to_list.dart;
5
6 List<String> lines = [];
7
8 void printOut(String s) {
9 lines.add(s);
10 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698