[FIR] Fix abbreviated type deserialization
This commit is contained in:
+4
-3
@@ -4,8 +4,9 @@ public final fun test2(x: R|test/LL<kotlin/String>|): R|kotlin/Unit|
|
||||
|
||||
public final fun test3(x: R|test/LLL<kotlin/String>|): R|kotlin/Unit|
|
||||
|
||||
public final fun test4(x: R|test/L<kotlin/collections/List<kotlin/String>>|): R|kotlin/Unit|
|
||||
public final fun test4(x: R|test/L<test/L<kotlin/String>>|): R|kotlin/Unit|
|
||||
|
||||
public final fun test5(x: R|test/LL<kotlin/collections/List<kotlin/String>>|): R|kotlin/Unit|
|
||||
public final fun test5(x: R|test/LL<test/LL<kotlin/String>>|): R|kotlin/Unit|
|
||||
|
||||
public final fun test6(x: R|test/LLL<test/LLL<kotlin/String>>|): R|kotlin/Unit|
|
||||
|
||||
public final fun test6(x: R|test/LLL<kotlin/collections/List<kotlin/String>>|): R|kotlin/Unit|
|
||||
|
||||
+1
-1
@@ -136,7 +136,7 @@ class FirTypeDeserializer(
|
||||
|
||||
val abbreviatedTypeProto = proto.abbreviatedType(typeTable) ?: return simpleType
|
||||
|
||||
return ConeClassLikeTypeImpl(typeSymbol(abbreviatedTypeProto) as ConeClassLikeLookupTag, arguments, isNullable = false)
|
||||
return simpleType(abbreviatedTypeProto)
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user