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

Unified Diff: tool/input_sdk/lib/core/map.dart

Issue 1963723003: update Map (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 7 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 | « lib/runtime/dart_sdk.js ('k') | tool/input_sdk/patch/core_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/core/map.dart
diff --git a/tool/input_sdk/lib/core/map.dart b/tool/input_sdk/lib/core/map.dart
index 755e7b891975565dfb4207d2001dbf1d9901dcf1..ac4581f7c004779f8a5592110a3a52f158ca4156 100644
--- a/tool/input_sdk/lib/core/map.dart
+++ b/tool/input_sdk/lib/core/map.dart
@@ -35,7 +35,7 @@ abstract class Map<K, V> {
* `operator==` and `hashCode`, and it allows null as a key.
* It iterates in key insertion order.
*/
- factory Map() = LinkedHashMap<K, V>;
+ external factory Map();
/**
* Creates a [LinkedHashMap] instance that contains all key-value pairs of
@@ -244,7 +244,7 @@ abstract class Map<K, V> {
* The values of [this].
*
* The values are iterated in the order of their corresponding keys.
- * This means that iterating [keys] and [values] in parrallel will
+ * This means that iterating [keys] and [values] in parallel will
* provided matching pairs of keys and values.
*
* The returned iterable has an efficient `length` method based on the
« no previous file with comments | « lib/runtime/dart_sdk.js ('k') | tool/input_sdk/patch/core_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698