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

Unified Diff: client/html/release/htmlimpl.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 9235015: Update map literal syntax to expect only one type parameter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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:
Download patch
Index: client/html/release/htmlimpl.dart
diff --git a/client/html/release/htmlimpl.dart b/client/html/release/htmlimpl.dart
index e8aa7cb44db06f7df5c3858b60248440f8415f72..d0ec8df6e6e21ddda8546810b10c816a5b86a7c8 100644
--- a/client/html/release/htmlimpl.dart
+++ b/client/html/release/htmlimpl.dart
@@ -23182,9 +23182,7 @@ class EventsImplementation implements Events {
Map<String, EventListenerList> _listenerMap;
EventsImplementation._wrap(this._ptr) {
- // TODO(sigmund): the key type (String) yields a warning in frog and the vm,
- // but it is currently necessary to compile with dartc.
- _listenerMap = <String, EventListenerList>{};
+ _listenerMap = <EventListenerList>{};
}
EventListenerList operator [](String type) {

Powered by Google App Engine
This is Rietveld 408576698