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

Unified Diff: tests/html/htmlelement_test.dart

Issue 11644061: Fixing a bunch of dartc errors in dart:html tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | « tests/html/html.status ('k') | tests/html/node_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/htmlelement_test.dart
diff --git a/tests/html/htmlelement_test.dart b/tests/html/htmlelement_test.dart
index f9455dfa33f85e905cd756bd3ad92436d39e490a..7c5e5a08843a85a087e90c9c18f5eedf06d1629a 100644
--- a/tests/html/htmlelement_test.dart
+++ b/tests/html/htmlelement_test.dart
@@ -61,7 +61,7 @@ main() {
final keys = <String> [];
final values = <String> [];
- div.dataAttributes.forEach(void f(String key, String value) {
+ div.dataAttributes.forEach((String key, String value) {
keys.add(key);
values.add(value);
});
« no previous file with comments | « tests/html/html.status ('k') | tests/html/node_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698