Fix getting built-in classes in frontend.java
getKotlinBuiltinClassDescriptor() worked only for classes in jet.* package and was failing for classes like jet.Map.Entry, jet.MutableMap.MutableEntry
This commit is contained in:
@@ -47,7 +47,7 @@ public class KotlinBuiltIns {
|
||||
public static final JetScope STUB = JetScope.EMPTY;
|
||||
|
||||
public static final String BUILT_INS_PACKAGE_NAME_STRING = "jet";
|
||||
/* package */ static final Name BUILT_INS_PACKAGE_NAME = Name.identifier(BUILT_INS_PACKAGE_NAME_STRING);
|
||||
public static final Name BUILT_INS_PACKAGE_NAME = Name.identifier(BUILT_INS_PACKAGE_NAME_STRING);
|
||||
public static final FqName BUILT_INS_PACKAGE_FQ_NAME = FqName.topLevel(BUILT_INS_PACKAGE_NAME);
|
||||
|
||||
public static final int FUNCTION_TRAIT_COUNT = 23;
|
||||
|
||||
Reference in New Issue
Block a user