Rename platform to header.

This commit is contained in:
Stanislav Erokhin
2016-12-13 17:59:59 +03:00
parent facee84020
commit 59efedf610
134 changed files with 500 additions and 499 deletions
@@ -1,36 +1,36 @@
platform fun f1()
header fun f1()
platform fun f2(name: String)
header fun f2(name: String)
platform fun f3(name: String)
platform fun String.f3ext()
header fun f3(name: String)
header fun String.f3ext()
platform fun f4(name: String)
header fun f4(name: String)
platform fun String.f5()
header fun String.f5()
platform fun f6(p1: String, p2: Int)
header fun f6(p1: String, p2: Int)
platform fun <T> f7()
header fun <T> f7()
internal platform fun f8()
private platform fun f9()
public platform fun f10()
internal header fun f8()
private header fun f9()
public header fun f10()
platform fun <T : Number> f11()
platform fun <U : MutableList<String>> f12()
platform fun <A, B : Continuation<A>> f13()
header fun <T : Number> f11()
header fun <U : MutableList<String>> f12()
header fun <A, B : Continuation<A>> f13()
platform inline fun <X> f14()
platform inline fun <reified Y> f15()
header inline fun <X> f14()
header inline fun <reified Y> f15()
platform fun f16(s: String)
header fun f16(s: String)
platform fun f17(vararg s: String)
platform fun f18(s: Array<out String>)
platform inline fun f19(crossinline s: () -> Unit)
platform inline fun f20(s: () -> Unit)
platform inline fun f21(noinline s: () -> Unit)
platform inline fun f22(s: () -> Unit)
platform fun f23(coroutine c: Unit.() -> Continuation<Unit>)
platform fun f24(c: Unit.() -> Continuation<Unit>)
header fun f17(vararg s: String)
header fun f18(s: Array<out String>)
header inline fun f19(crossinline s: () -> Unit)
header inline fun f20(s: () -> Unit)
header inline fun f21(noinline s: () -> Unit)
header inline fun f22(s: () -> Unit)
header fun f23(coroutine c: Unit.() -> Continuation<Unit>)
header fun f24(c: Unit.() -> Continuation<Unit>)