Skip to content

Commit 53460d7

Browse files
committed
Add comment
1 parent db13b32 commit 53460d7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

java/kotlin-extractor2/src/main/kotlin/entities/Expression.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ private fun KaFunctionSymbol?.isBinaryPlus(): Boolean {
347347
return this != null && (
348348
this.isNumericWithName("plus") ||
349349
this.hasName("kotlin", "String", "plus") ||
350+
/* The target for `(null as String?) + null` is `public operator fun String?.plus(other: Any?): String` */
350351
this.hasMatchingNames(
351352
CallableId(FqName("kotlin"), null, Name.identifier("plus")),
352353
ClassId(FqName("kotlin"), Name.identifier("String")),

0 commit comments

Comments
 (0)