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

Unified Diff: pkg/intl/test/message_extraction/sample_with_messages.dart

Issue 167943005: Fix the obscure corner case of three items in a plural (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
« no previous file with comments | « pkg/intl/lib/intl.dart ('k') | pkg/intl/test/message_extraction/verify_messages.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/test/message_extraction/sample_with_messages.dart
diff --git a/pkg/intl/test/message_extraction/sample_with_messages.dart b/pkg/intl/test/message_extraction/sample_with_messages.dart
index e1a9ac37d55372897158ab22d9e7ef9be45c1a5d..fe3c5b4a63a250ef81ead04ba0bb1133ad5c89f8 100644
--- a/pkg/intl/test/message_extraction/sample_with_messages.dart
+++ b/pkg/intl/test/message_extraction/sample_with_messages.dart
@@ -150,6 +150,19 @@ printStuff(Intl locale) {
printOut(thing.plurals(0));
printOut(thing.plurals(1));
printOut(thing.plurals(2));
+ printOut(thing.plurals(3));
+ printOut(thing.plurals(4));
+ printOut(thing.plurals(5));
+ printOut(thing.plurals(6));
+ printOut(thing.plurals(7));
+ printOut(thing.plurals(8));
+ printOut(thing.plurals(9));
+ printOut(thing.plurals(10));
+ printOut(thing.plurals(11));
+ printOut(thing.plurals(20));
+ printOut(thing.plurals(100));
+ printOut(thing.plurals(101));
+ printOut(thing.plurals(100000));
var alice = new Person("Alice", "female");
var bob = new Person("Bob", "male");
var cat = new Person("cat", null);
« no previous file with comments | « pkg/intl/lib/intl.dart ('k') | pkg/intl/test/message_extraction/verify_messages.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698