got more map code compiling to JS and running as unit tests
This commit is contained in:
@@ -30,6 +30,11 @@ public class UnsupportedOperationException(message: String = "") : Exception() {
|
||||
library
|
||||
public class NumberFormatException(message: String = "") : Exception() {}
|
||||
|
||||
library
|
||||
public trait Runnable {
|
||||
open fun run() : Unit;
|
||||
}
|
||||
|
||||
public trait Comparable<T> {
|
||||
fun compareTo(that: T): Int
|
||||
}
|
||||
@@ -39,4 +44,3 @@ public trait Appendable {
|
||||
open fun append(csq: CharSequence?, start: Int, end: Int): Appendable?
|
||||
open fun append(c: Char): Appendable?
|
||||
}
|
||||
|
||||
|
||||
@@ -244,3 +244,8 @@ public class StringBuilder() : Appendable {
|
||||
|
||||
library
|
||||
public class NoSuchElementException() : Exception() {}
|
||||
|
||||
public trait Enumeration<E> {
|
||||
open fun hasMoreElements(): Boolean
|
||||
open fun nextElement(): E?
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user