re-enabled compiling to JS test cases now we've fixed the compilation of the latest comparator based standard library code

This commit is contained in:
James Strachan
2012-06-29 23:13:05 +01:00
parent e06e5198ed
commit 63e0f169fc
9 changed files with 39 additions and 34 deletions
-4
View File
@@ -10,10 +10,6 @@ public trait Comparator<T> {
fun compare(obj1 : T, obj2 : T) : Int;
}
library("comparator")
public fun comparator<T>(f : (T, T) -> Int) : Comparator<T> = js.noImpl
library
public trait Iterator<T> {
open fun next() : T = js.noImpl
+6
View File
@@ -0,0 +1,6 @@
package kotlin
import java.util.*
library("comparator")
public fun comparator<T>(f : (T, T) -> Int) : Comparator<T> = js.noImpl