mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
<IMPL_SUFFIX> for method is a method signature hash, if method value parameter types contain inline class types, otherwise 'impl'. Constructor methods are named as 'constructor-<IMPL_SUFFIX>'. Synthesized 'box' and 'unbox' methods are named as '<METHOD_NAME>-<IMPL_SUFFIX>'. Erased implementations of overriding and non-overriding methods are named as '<METHOD_NAME>-<IMPL_SUFFIX>'. Fully specialized implementation of 'equals' will have a special suffix.
25 lines
1.1 KiB
Plaintext
Vendored
25 lines
1.1 KiB
Plaintext
Vendored
@kotlin.Metadata
|
|
public interface A {
|
|
public abstract method foo(p0: java.lang.Object): void
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public final class Foo {
|
|
private final field x: long
|
|
private synthetic method <init>(p0: long): void
|
|
public synthetic final static @org.jetbrains.annotations.NotNull method box-impl(p0: long): Foo
|
|
public static method constructor-impl(p0: long): long
|
|
public method equals(p0: java.lang.Object): boolean
|
|
public static method equals-impl(p0: long, @org.jetbrains.annotations.Nullable p1: java.lang.Object): boolean
|
|
public final static method equals-impl0(p0: long, p1: long): boolean
|
|
public synthetic method foo(p0: java.lang.Object): void
|
|
public method foo-GWb7d6U(p0: long): void
|
|
public static method foo-GWb7d6U(p0: long, p1: long): void
|
|
public final method getX(): long
|
|
public method hashCode(): int
|
|
public static method hashCode-impl(p0: long): int
|
|
public method toString(): java.lang.String
|
|
public static @org.jetbrains.annotations.NotNull method toString-impl(p0: long): java.lang.String
|
|
public synthetic final method unbox-impl(): long
|
|
}
|