Flatten HashMap hierarhy, provide string-keyed map and set specializations.

This commit is contained in:
Ilya Gorbunov
2016-08-26 21:51:37 +03:00
parent 5833d32f25
commit e342593d2e
11 changed files with 426 additions and 352 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ class PrimitiveMapJsTest : MapJsTest() {
}
override fun <T : kotlin.Comparable<T>> Collection<T>.toNormalizedList(): List<T> = this.sorted()
override fun emptyMutableMap(): MutableMap<String, Int> = HashMap()
override fun emptyMutableMap(): MutableMap<String, Int> = stringMapOf()
override fun emptyMutableMapWithNullableKeyValue(): MutableMap<String?, Int?> = HashMap()
@test fun compareBehavior() {