build-logic/generatorlegacybuild/src/main/kotlin/karakum/table/Converter.kt [172:191]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - return ConversionResult(name, "external fun " + body) } private fun convertType( source: String, ): ConversionResult = if (" = {\n" in source) { convertInterface(source) } else { convertTypealias(source) } private fun convertTypealias( source: String, ): ConversionResult { val name = source .substringBefore(" ") .substringBefore(":") .substringBefore("<") .substringBefore("(") - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - build-logic/generatorlegacybuild/src/main/kotlin/karakum/virtual/Converter.kt [117:136]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - return ConversionResult(name, "external fun " + body) } private fun convertType( source: String, ): ConversionResult = if (" = {\n" in source) { convertInterface(source) } else { convertTypealias(source) } private fun convertTypealias( source: String, ): ConversionResult { val name = source .substringBefore(" ") .substringBefore(":") .substringBefore("<") .substringBefore("(") - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -