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

Unified Diff: pkg/intl/example/basic/messages_all.dart

Issue 11366016: Update intl to new import syntax (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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: pkg/intl/example/basic/messages_all.dart
===================================================================
--- pkg/intl/example/basic/messages_all.dart (revision 14362)
+++ pkg/intl/example/basic/messages_all.dart (working copy)
@@ -8,7 +8,7 @@
* all of them. In this example there's only one program file, so it doesn't
* make very much difference.
*/
-#library('messages_all.dart');
+library messages_all;
-#import('messages_th_th.dart', prefix: 'th_TH');
-#import('messages_de.dart', prefix: 'de');
+import 'messages_th_th.dart' as th_TH;
+import 'messages_de.dart' as de;

Powered by Google App Engine
This is Rietveld 408576698