Fix FirAnnotationArgumentChecker (String + ... case) #KT-44995 Fixed

This commit is contained in:
Mikhail Glukhikh
2021-02-17 11:13:59 +03:00
parent cd8f597e2f
commit 1a0be3ee40
5 changed files with 26 additions and 2 deletions
@@ -71,6 +71,7 @@ object StandardClassIds {
Byte, Short, Int, Long,
Float, Double
)
val primitiveTypesAndString = primitiveTypes + String
val primitiveArrayTypeByElementType = primitiveTypes.associate { id -> id to id.shortClassName.primitiveArrayId() }
val elementTypeByPrimitiveArrayType = primitiveArrayTypeByElementType.inverseMap()