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

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

Issue 143453011: pkg/intl: dartfmt (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.part of sample; 3 // BSD-style license that can be found in the LICENSE file.part of sample;
4 4
5 part of sample; 5 part of sample;
6 6
7 class Person { 7 class Person {
8 String name; 8 String name;
9 String gender; 9 String gender;
10 Person(this.name, this.gender); 10 Person(this.name, this.gender);
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 one: "${names} est allé au $place", 65 one: "${names} est allé au $place",
66 other: "${names} sont allés au $place")}', 66 other: "${names} sont allés au $place")}',
67 female: '${Intl.plural(number, 67 female: '${Intl.plural(number,
68 one: "$names est allée au $place", 68 one: "$names est allée au $place",
69 other: "$names sont allées au $place")}' 69 other: "$names sont allées au $place")}'
70 )}''', 70 )}''',
71 name: "nestedMessage", 71 name: "nestedMessage",
72 args: [names, number, combinedGender, place]); 72 args: [names, number, combinedGender, place]);
73 return nestedMessage(names, number, combinedGender, place); 73 return nestedMessage(names, number, combinedGender, place);
74 } 74 }
75 } 75 }
OLDNEW
« no previous file with comments | « pkg/intl/test/message_extraction/message_extraction_test.dart ('k') | pkg/intl/test/message_extraction/print_to_list.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698