Kotlin: Allow comments on enum entries

This commit is contained in:
Ian Lynagh
2021-11-29 11:42:18 +00:00
parent cc478eb6ee
commit 6a16588484
2 changed files with 2 additions and 1 deletions

View File

@@ -45,6 +45,7 @@ open class KotlinFileExtractor(
is IrValueParameter -> return getValueParameterLabel(element)
is IrProperty -> return getPropertyLabel(element)
is IrField -> return getFieldLabel(element)
is IrEnumEntry -> return getEnumEntryLabel(element)
// Fresh entities:
is IrBody -> return null