Migration to actual/expect: quick-fix CreateActualFix with tests

This commit is contained in:
Mikhail Glukhikh
2017-09-14 18:25:33 +03:00
parent 810d62bbaf
commit fba1a2a2db
41 changed files with 121 additions and 120 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
// "Create header class implementation for platform JVM" "true"
// "Create actual class for platform JVM" "true"
header class <caret>WithNested {
fun foo(): Int
@@ -1,4 +1,4 @@
// "Create header class implementation for platform JVM" "true"
// "Create actual class for platform JVM" "true"
header class WithNested {
fun foo(): Int
@@ -1,5 +1,5 @@
// WithNested: to be implemented
impl class WithNested {
actual class WithNested {
class Nested {
fun bar()
@@ -9,7 +9,7 @@ impl class WithNested {
fun baz()
}
impl fun foo(): Int {
actual fun foo(): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}