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/polymer_expressions/lib/expression.dart

Issue 23583021: Fixing analyzer error in polymer_expressions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer_expressions/lib/expression.dart
diff --git a/pkg/polymer_expressions/lib/expression.dart b/pkg/polymer_expressions/lib/expression.dart
index e9c409a3fcc5422b21c9d152433602795d1909a8..0a5bb82e42e70d58da21aece657c3eed040a83f5 100644
--- a/pkg/polymer_expressions/lib/expression.dart
+++ b/pkg/polymer_expressions/lib/expression.dart
@@ -223,7 +223,7 @@ bool _listEquals(List a, List b) {
int _hashList(List l) {
var hash = l.fold(0,
- (hash, item) => _JenkinsSmiHash.combine(hash, item.hashCode));
+ (h, item) => _JenkinsSmiHash.combine(h, item.hashCode));
return _JenkinsSmiHash.finish(hash);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698