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

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

Issue 814113004: Pull args, intl, logging, shelf, and source_maps out of the SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also csslib. Created 6 years 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 | Annotate | Revision Log
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