Chris Lee
fun canonicalText(importDirective: KtImportDirective) = importDirective.importedFqName?.asString() + " " + importDirective.alias?.text?.replace("`", "") + " " + if (importDirective.isAllUnder) "*" else "" val sortedImports = importList.imports.sortedBy(::canonicalText).distinctBy(::canonicalText)
A modern programming language that makes developers happier.