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

Unified Diff: pkg/dev_compiler/tool/input_sdk/patch/collection_patch.dart

Issue 2304323002: Cast InternalMap to Map. (Closed)
Patch Set: Make InternalMap directly implement Map instead of casting. Created 4 years, 3 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
Index: pkg/dev_compiler/tool/input_sdk/patch/collection_patch.dart
diff --git a/pkg/dev_compiler/tool/input_sdk/patch/collection_patch.dart b/pkg/dev_compiler/tool/input_sdk/patch/collection_patch.dart
index 4a9ff797009b4022849934928cb08ba374e7fe0f..c8a2c7e12b0cf836db38ea92024eaaf838b33876 100644
--- a/pkg/dev_compiler/tool/input_sdk/patch/collection_patch.dart
+++ b/pkg/dev_compiler/tool/input_sdk/patch/collection_patch.dart
@@ -554,7 +554,7 @@ class _LinkedIdentityHashMap<K, V> extends JsLinkedHashMap<K, V> {
}
class _Es6LinkedIdentityHashMap<K, V>
- extends _LinkedIdentityHashMap<K, V> implements InternalMap {
+ extends _LinkedIdentityHashMap<K, V> implements InternalMap<K, V> {
final _map;
int _modifications = 0;
« no previous file with comments | « pkg/dev_compiler/lib/js/legacy/dart_sdk.js ('k') | pkg/dev_compiler/tool/input_sdk/private/isolate_serialization.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698