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

View File

@@ -1,3 +1,3 @@
// "Create header function implementation for platform JVM" "true"
// "Create actual function for platform JVM" "true"
header fun <caret>foo(arg: Int): String

View File

@@ -1,3 +1,3 @@
// "Create header function implementation for platform JVM" "true"
// "Create actual function for platform JVM" "true"
header fun foo(arg: Int): String

View File

@@ -1,4 +1,4 @@
// foo: to be implemented
impl fun foo(arg: Int): String {
actual fun foo(arg: Int): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}