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

Unified Diff: pkg/intl/lib/src/intl_message.dart

Issue 28193004: Attempt to fix build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « pkg/intl/lib/extract_messages.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/lib/src/intl_message.dart
diff --git a/pkg/intl/lib/src/intl_message.dart b/pkg/intl/lib/src/intl_message.dart
index 2fe5fd021de16a923d3f0dda53821454adf74903..7da13ee3e8de00baca4595f826bc6141fda243a5 100644
--- a/pkg/intl/lib/src/intl_message.dart
+++ b/pkg/intl/lib/src/intl_message.dart
@@ -459,7 +459,7 @@ abstract class SubMessage extends ComplexMessage {
* argument names and values.
*/
Map argumentsOfInterestFor(MethodInvocation node) {
- var basicArguments = node.argumentList.arguments.elements;
+ var basicArguments = node.argumentList.arguments;
var others = basicArguments.where((each) => each is NamedExpression);
return new Map.fromIterable(others,
key: (node) => node.name.label.token.value(),
@@ -643,7 +643,7 @@ class Select extends SubMessage {
* arguments used in Plural/Gender.
*/
Map argumentsOfInterestFor(MethodInvocation node) {
- var casesArgument = node.argumentList.arguments.elements[1];
+ var casesArgument = node.argumentList.arguments[1];
return new Map.fromIterable(casesArgument.entries,
key: (node) => node.key.value,
value: (node) => node.value);
« no previous file with comments | « pkg/intl/lib/extract_messages.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698