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

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

Issue 1946663002: Implement Map.unmodifiable (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: Created 4 years, 8 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 c011a2044a5ade009120ebda2ec5379815b91210..45a617686475e17e98dadb4de73daf371aa49686 100644
--- a/tool/input_sdk/lib/core/map.dart
+++ b/tool/input_sdk/lib/core/map.dart
@@ -51,6 +51,22 @@ abstract class Map<K, V> {
factory Map.from(Map other) = LinkedHashMap<K, V>.from;
/**
+ * Creates an unmodifiable hash based map containing the entries of [other].
+ *
+ * The keys must all be assignable to [K] and the values to [V].
+ * The [other] map itself can have any type.
+ *
+ * The map requires the keys to implement compatible
+ * `operator==` and `hashCode`, and it allows `null` as a key.
+ * The created map iterates keys in a fixed order,
+ * preserving the order provided by [other].
+ *
+ * The resulting map behaves like the result of [Map.from],
+ * except that the map returned by this constructor is not modifiable.
+ */
+ external factory Map.unmodifiable(Map other);
+
+ /**
* Creates an identity map with the default implementation, [LinkedHashMap].
*
* The returned map allows `null` as a key.
@@ -133,7 +149,7 @@ abstract class Map<K, V> {
/**
* Returns true if this map contains the given [key].
*
- * Returns true if any of the keys in the map ar equal to `key`
+ * Returns true if any of the keys in the map are equal to `key`
* according to the equality used by the map.
*/
bool containsKey(Object key);
« 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