2a7dc1cc0c
This scheme will be common for all compiler plugins with K1 and K2 support: - `plugin-common` contains classes shared with K1 and K2 implementations (if any) - `plugin-k1` contains implementation for K1 compiler - `plugin-k2` contains implementation for K2 compiler - `plugin-backend` contains implementation for backend extensions (if any) - `plugin-cli` is module for registration of plugin in CLI compiler - `plugin` is a root module with tests and all submodules embedded This structure is needed to distinguish parts related to different frontends, which is needed for proper dependencies settings for Kotlin IDE plugins
103 lines
2.3 KiB
Plaintext
Vendored
103 lines
2.3 KiB
Plaintext
Vendored
@java.lang.annotation.Retention(value=RUNTIME)
|
|
@kotlin.Metadata
|
|
public annotation class AllOpen {
|
|
// source: 'metaAnnotation.kt'
|
|
}
|
|
|
|
@OtherComponent
|
|
@java.lang.annotation.Retention(value=RUNTIME)
|
|
@kotlin.Metadata
|
|
public annotation class AnotherComponent {
|
|
// source: 'metaAnnotation.kt'
|
|
}
|
|
|
|
@Documented
|
|
@kotlin.Metadata
|
|
public final class ClassWithDocumented {
|
|
// source: 'metaAnnotation.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@java.lang.annotation.Documented
|
|
@java.lang.annotation.Retention(value=RUNTIME)
|
|
@kotlin.Metadata
|
|
public annotation class Documented {
|
|
// source: 'metaAnnotation.kt'
|
|
}
|
|
|
|
@AllOpen
|
|
@java.lang.annotation.Retention(value=RUNTIME)
|
|
@kotlin.Metadata
|
|
public annotation class MyComponent {
|
|
// source: 'metaAnnotation.kt'
|
|
}
|
|
|
|
@MyComponent
|
|
@kotlin.Metadata
|
|
public abstract class MyComponentBase {
|
|
// source: 'metaAnnotation.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public final class MyComponentImpl2_ShouldBeFinal {
|
|
// source: 'metaAnnotation.kt'
|
|
public method <init>(): void
|
|
public method method(): void
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public class MyComponentImpl3_ShouldBeOpen {
|
|
// source: 'metaAnnotation.kt'
|
|
public method <init>(): void
|
|
public final method method_ShouldBeFinal(): void
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public class MyComponentImpl_ShouldBeOpen {
|
|
// source: 'metaAnnotation.kt'
|
|
public method <init>(): void
|
|
public method method(): void
|
|
}
|
|
|
|
@MyComponent
|
|
@java.lang.annotation.Retention(value=RUNTIME)
|
|
@kotlin.Metadata
|
|
public annotation class OtherComponent {
|
|
// source: 'metaAnnotation.kt'
|
|
}
|
|
|
|
@AllOpen
|
|
@kotlin.Metadata
|
|
public class TestAllOpen_ShouldBeOpen {
|
|
// source: 'metaAnnotation.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@AnotherComponent
|
|
@kotlin.Metadata
|
|
public class TestAnotherComponent_ShouldBeOpen {
|
|
// source: 'metaAnnotation.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@MyComponent
|
|
@kotlin.Metadata
|
|
public class TestMyComponent_ShouldBeOpen {
|
|
// source: 'metaAnnotation.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@OtherComponent
|
|
@kotlin.Metadata
|
|
public class TestOtherComponent_ShouldBeOpen {
|
|
// source: 'metaAnnotation.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public final class TestWithoutAnnotations_ShouldBeFinal {
|
|
// source: 'metaAnnotation.kt'
|
|
public method <init>(): void
|
|
}
|