mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
This change will prevent the compiler for generating Java bytecode for private property setters that are trivial. Since Kotlin uses direct field access for private properties, it will result in the private setter never been used and since it cannot be accessed by any other class without reflection, the setter cannot be covered by code coverage tools. See https://youtrack.jetbrains.com/issue/KT-20344 for the related YouTrack issue.