Add UL support for const fields initializers
Fixed #KT-34081
This commit is contained in:
@@ -170,7 +170,13 @@ object UltraLightChecker {
|
||||
if (this is PsiParameter && this.isVarArgs) {
|
||||
result += " /* vararg */"
|
||||
}
|
||||
|
||||
if (hasInitializer()) {
|
||||
result += " = ${initializer?.text} /* initializer type: ${initializer?.type?.renderType()} */"
|
||||
}
|
||||
|
||||
computeConstantValue()?.let { result += " /* constant value $it */" }
|
||||
|
||||
return result
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user