Skip to content

Commit

Permalink
Fix the line length warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ansman authored and ting-yuan committed Sep 8, 2024
1 parent 7596ee8 commit 46abbe5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -498,9 +498,10 @@ class ResolverAAImpl(
"set"
}

val name = accessor.receiver.simpleName.asString().replaceFirstChar(Char::uppercaseChar)
val inlineSuffix = symbol?.inlineSuffix ?: ""
val mangledName = symbol?.internalSuffix ?: ""
return "${prefix}${accessor.receiver.simpleName.asString().replaceFirstChar(Char::uppercaseChar)}$inlineSuffix$mangledName"
return "$prefix$name$inlineSuffix$mangledName"
}

// TODO: handle library symbols
Expand Down

0 comments on commit 46abbe5

Please sign in to comment.