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

Unified Diff: lib/core/map.dart

Issue 10979050: Ensure that hashCode and runtimeType work on null. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments. Created 8 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: lib/core/map.dart
diff --git a/lib/core/map.dart b/lib/core/map.dart
index 98519c949a7e93b4ab888f8ba5f895d2d425bf3d..cc3a01ed03dca482218e96ebb3cf26d69b041e7c 100644
--- a/lib/core/map.dart
+++ b/lib/core/map.dart
@@ -4,7 +4,7 @@
/**
* A [Map] is an associative container, mapping a key to a value.
- * Null values are supported.
+ * Null values are supported, but null keys are not.
*/
interface Map<K, V> default HashMapImplementation<K extends Hashable, V> {
/**

Powered by Google App Engine
This is Rietveld 408576698