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

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

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 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 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