rename platformStatic to jvmStatic
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
import kotlin.platform.platformStatic
|
||||
|
||||
abstract class A {
|
||||
// INFO: {"checked": "true"}
|
||||
var x = 2 * 3
|
||||
@@ -23,7 +21,7 @@ abstract class A {
|
||||
var X = "1" + "2"
|
||||
|
||||
// INFO: {"checked": "true"}
|
||||
platformStatic fun foo2(n: Int): String {
|
||||
jvmStatic fun foo2(n: Int): String {
|
||||
return "_" + n + "_"
|
||||
}
|
||||
}
|
||||
|
||||
+1
-3
@@ -1,5 +1,3 @@
|
||||
import kotlin.platform.platformStatic
|
||||
|
||||
abstract class A {
|
||||
// INFO: {"checked": "true", "toAbstract": "true"}
|
||||
var x = 2 * 3
|
||||
@@ -21,7 +19,7 @@ abstract class A {
|
||||
var X = "1" + "2"
|
||||
|
||||
// INFO: {"checked": "true", "toAbstract": "true"}
|
||||
platformStatic fun foo2(n: Int): String {
|
||||
jvmStatic fun foo2(n: Int): String {
|
||||
return "_" + n + "_"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import kotlin.platform.platformStatic
|
||||
|
||||
interface A {
|
||||
// INFO: {"checked": "true"}
|
||||
class Y
|
||||
@@ -17,7 +15,7 @@ interface A {
|
||||
var X = "1" + "2"
|
||||
|
||||
// INFO: {"checked": "true"}
|
||||
platformStatic fun foo2(n: Int): String {
|
||||
jvmStatic fun foo2(n: Int): String {
|
||||
return "_" + n + "_"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import kotlin.platform.platformStatic
|
||||
|
||||
class T {
|
||||
class U {
|
||||
abstract class A {
|
||||
@@ -25,7 +23,7 @@ class T {
|
||||
var X = "1" + "2"
|
||||
|
||||
// INFO: {"checked": "true"}
|
||||
platformStatic fun foo2(n: Int): String {
|
||||
jvmStatic fun foo2(n: Int): String {
|
||||
return "_" + n + "_"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user