BenWoodworth / Parameterize

Kotlin syntax for clean parameterized code
Apache License 2.0
37 stars 3 forks source link

When supported by targets, validate parameter declaration with `KProperty.equals()` #33

Open BenWoodworth opened 2 months ago

BenWoodworth commented 2 months ago

Not all Kotlin targets support comparing a KProperty with .equals(), so currently some targets check by comparing the KProperty.name instead. If support is ever added, change these implementations to use .equals() instead.

See: KT-52704 and KT-15101