Used ConvertMemberToExtensionIntention in MigrateExternalExtensionFix instead of manually creating extension method

This commit is contained in:
qx
2017-05-03 17:57:17 +03:00
parent 8ba61ce7aa
commit f6fe1c50c2
6 changed files with 31 additions and 78 deletions
@@ -5,6 +5,6 @@ external class B {
}
@Suppress("NOTHING_TO_INLINE")
inline fun <T> B.exp(t: T) {
inline fun<T> B.exp(t: T) {
asDynamic()(t)
}