| Index: client/html/release/htmlimpl.dart
|
| diff --git a/client/html/release/htmlimpl.dart b/client/html/release/htmlimpl.dart
|
| index 6d1421a2900dbd2d264008f966293b1aaee57de1..416ea55bdee3236ef626125f6ca02d30261b0c74 100644
|
| --- a/client/html/release/htmlimpl.dart
|
| +++ b/client/html/release/htmlimpl.dart
|
| @@ -23397,9 +23397,9 @@ class EventsImplementation implements Events {
|
| Map<String, EventListenerList> _listenerMap;
|
|
|
| EventsImplementation._wrap(this._ptr) {
|
| - // TODO(sigmund): uncomment type annotation (bug 221), currently dartc and
|
| - // frog interpret it differently.
|
| - _listenerMap = /*<EventListenerList>*/{};
|
| + // 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>{};
|
| }
|
|
|
| EventListenerList operator [](String type) {
|
|
|