mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
- KtClassLikeSymbol.primaryConstructor was removed - Constructors were removed from getCallableMembers because constructors has no name (or special name `<init>`) and previous implementation was incorrect - KtScope.getAllSymbols returns constructors as before. Before it was like this because of the incorrect implementation of getCallableMembers - getConstructors has sence only for class scope, for the rest cases it is empty
12 lines
338 B
Java
Vendored
12 lines
338 B
Java
Vendored
public final class Constructors /* Constructors*/ {
|
|
private final int valInPrimary;
|
|
|
|
private Constructors();// .ctor()
|
|
|
|
public Constructors(@org.jetbrains.annotations.NotNull() java.lang.String);// .ctor(java.lang.String)
|
|
|
|
public Constructors(int);// .ctor(int)
|
|
|
|
public final int getValInPrimary();// getValInPrimary()
|
|
|
|
} |