Add test for uncovered case.

This commit is contained in:
Pavel V. Talanov
2012-03-30 13:21:49 +04:00
parent fbd1279cc9
commit 36e242a9e6
3 changed files with 26 additions and 0 deletions
+4
View File
@@ -19,6 +19,10 @@ fun print(s : Any?) {}
library("parseInt")
fun parseInt(s : String) : Int = js.noImpl
library
fun safeParseInt(s : String) : Int? = js.noImpl
library
fun safeParseDouble(s : String) : Double? = js.noImpl
library
open class Exception() : Throwable() {}
library
class NumberFormatException() : Exception() {}