mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
In this mode, javac AST and Symbol files are used during Kotlin compilation instead of PSI / binary stuff. Later, they are reused for Java file compilation. javac in this mode is integrated into kotlinc.
15 lines
320 B
Plaintext
Vendored
15 lines
320 B
Plaintext
Vendored
package test
|
|
|
|
public fun answer(): kotlin.Int
|
|
|
|
public open class StaticNestedClass {
|
|
public constructor StaticNestedClass()
|
|
|
|
public/*package*/ open class StaticNested {
|
|
public/*package*/ constructor StaticNested()
|
|
|
|
// Static members
|
|
public final var ULTIMATE_QUESTION: kotlin.Int
|
|
}
|
|
}
|