enabled the compiling of most of the collections based standard kotlin library to JavaScript
This commit is contained in:
@@ -78,7 +78,7 @@ public fun <T> java.lang.Iterable<T>.contains(item : T) : Boolean {
|
||||
}
|
||||
|
||||
for (var elem in this) {
|
||||
if (elem.equals(item)) {
|
||||
if (elem == item) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -68,7 +68,6 @@
|
||||
</fileset>
|
||||
<fileset dir="${basedir}/../../stdlib/src/kotlin">
|
||||
<include name="Preconditions.kt"/>
|
||||
<!--
|
||||
<include name="Iterators.kt"/>
|
||||
<include name="JUtil.kt"/>
|
||||
<include name="JUtilCollections.kt"/>
|
||||
@@ -76,7 +75,6 @@
|
||||
<include name="JLangIterables.kt"/>
|
||||
<include name="JLangIterablesLazy.kt"/>
|
||||
<include name="JLangIterablesSpecial.kt"/>
|
||||
-->
|
||||
<!--
|
||||
<include name="Ordering.kt"/>
|
||||
-->
|
||||
|
||||
Reference in New Issue
Block a user