Do not generate headers for JS-only functions.

This commit is contained in:
Ilya Gorbunov
2017-01-18 21:59:03 +03:00
parent be15dea6b5
commit a429992e81
2 changed files with 1 additions and 41 deletions
@@ -7721,43 +7721,3 @@ public header fun BooleanArray.toTypedArray(): Array<Boolean>
*/
public header fun CharArray.toTypedArray(): Array<Char>
/**
* Sorts the array in-place according to the order specified by the given [comparison] function.
*/
public header inline fun <T> Array<out T>.sort(noinline comparison: (T, T) -> Int): Unit
/**
* Sorts the array in-place according to the order specified by the given [comparison] function.
*/
public header inline fun ByteArray.sort(noinline comparison: (Byte, Byte) -> Int): Unit
/**
* Sorts the array in-place according to the order specified by the given [comparison] function.
*/
public header inline fun ShortArray.sort(noinline comparison: (Short, Short) -> Int): Unit
/**
* Sorts the array in-place according to the order specified by the given [comparison] function.
*/
public header inline fun IntArray.sort(noinline comparison: (Int, Int) -> Int): Unit
/**
* Sorts the array in-place according to the order specified by the given [comparison] function.
*/
public header inline fun LongArray.sort(noinline comparison: (Long, Long) -> Int): Unit
/**
* Sorts the array in-place according to the order specified by the given [comparison] function.
*/
public header inline fun FloatArray.sort(noinline comparison: (Float, Float) -> Int): Unit
/**
* Sorts the array in-place according to the order specified by the given [comparison] function.
*/
public header inline fun DoubleArray.sort(noinline comparison: (Double, Double) -> Int): Unit
/**
* Sorts the array in-place according to the order specified by the given [comparison] function.
*/
public header inline fun CharArray.sort(noinline comparison: (Char, Char) -> Int): Unit