Migrate impl to actual in libraries projects
This commit is contained in:
+2
-2
@@ -1,5 +1,5 @@
|
||||
package foo
|
||||
|
||||
impl class PlatformClass {
|
||||
impl val value: String = "JS"
|
||||
actual class PlatformClass {
|
||||
actual val value: String = "JS"
|
||||
}
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
package foo
|
||||
|
||||
impl class PlatformTest {
|
||||
impl val value: PlatformClass = PlatformClass()
|
||||
actual class PlatformTest {
|
||||
actual val value: PlatformClass = PlatformClass()
|
||||
}
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
package foo
|
||||
|
||||
impl class PlatformClass {
|
||||
impl val value: String = "JVM"
|
||||
actual class PlatformClass {
|
||||
actual val value: String = "JVM"
|
||||
}
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
package foo
|
||||
|
||||
impl class PlatformTest {
|
||||
impl val value: PlatformClass = PlatformClass()
|
||||
actual class PlatformTest {
|
||||
actual val value: PlatformClass = PlatformClass()
|
||||
}
|
||||
Reference in New Issue
Block a user