Get rid of deprecated annotations and modifiers in js-stdlib

This commit is contained in:
Denis Zharkov
2015-09-14 16:36:37 +03:00
parent 5cecaa6f87
commit 05eaf37123
44 changed files with 1484 additions and 1484 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
package kotlin.js
//TODO: declare using number
native
@native
public class MathClass() {
public val PI : Double = noImpl;
public fun random() : Double = noImpl;
@@ -26,5 +26,5 @@ public class MathClass() {
public fun ceil(value : Number) : Int = noImpl
}
native
@native
public val Math: MathClass = MathClass();