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

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

Issue 23484010: Re-arrange tests to allow testing generated messages code in dart2js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Regenerated code 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 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