mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
103 lines
2.2 KiB
Plaintext
Vendored
103 lines
2.2 KiB
Plaintext
Vendored
@java.lang.annotation.Retention
|
|
@kotlin.Metadata
|
|
public annotation class AllOpen {
|
|
// source: 'metaAnnotation.kt'
|
|
}
|
|
|
|
@OtherComponent
|
|
@java.lang.annotation.Retention
|
|
@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
|
|
@kotlin.Metadata
|
|
public annotation class Documented {
|
|
// source: 'metaAnnotation.kt'
|
|
}
|
|
|
|
@AllOpen
|
|
@java.lang.annotation.Retention
|
|
@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
|
|
@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
|
|
}
|