mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
Simplify code handling access flag computation Fix a problem where kotlin nested object wasn't producing a nested light class
28 lines
674 B
Plaintext
Vendored
28 lines
674 B
Plaintext
Vendored
@kotlin.Metadata
|
|
public class A {
|
|
private final field s: int
|
|
public method <init>(p0: int): void
|
|
public method foo(): int
|
|
public final method getS(): int
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public final class NestedObjectWithSuperclassKt {
|
|
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public final class Outer {
|
|
public final static field INSTANCE: Outer
|
|
inner class Outer/O
|
|
private method <init>(): void
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public final static class Outer/O {
|
|
public final static field INSTANCE: Outer.O
|
|
inner class Outer/O
|
|
private method <init>(): void
|
|
public method foo(): int
|
|
}
|