You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: analysis/symbol-light-classes/src/org/jetbrains/kotlin/light/classes/symbol/classes/symbolLightClassUtils.kt
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -286,10 +286,7 @@ internal fun SymbolLightClassBase.createPropertyAccessors(
286
286
if (declaration isKtKotlinPropertySymbol&& declaration.isConst) return
287
287
if (declaration.name.isSpecial) return
288
288
289
-
if (declaration.visibility.isPrivateOrPrivateToThis() &&
290
-
declaration.getter?.hasBody ==false&&
291
-
declaration.setter?.hasBody ==false
292
-
) return
289
+
if (declaration.getter?.hasBody !=true&& declaration.setter?.hasBody !=true&& declaration.visibility.isPrivateOrPrivateToThis()) return
0 commit comments