fe328f8c7a
1) Trim unused spaces in annotations 2) Rewrote fq name rendering 3) Added annotations to for loop variable 4) Added type arguments render along to type parameters in functions
18 lines
250 B
Kotlin
Vendored
18 lines
250 B
Kotlin
Vendored
expect class MyClass
|
|
|
|
expect fun foo(): String
|
|
|
|
// Int
|
|
// │
|
|
expect val x: Int
|
|
|
|
actual class MyClass
|
|
|
|
// String
|
|
// │
|
|
actual fun foo() = "Hello"
|
|
|
|
// Int Int
|
|
// │ │
|
|
actual val x = 42
|