From b185715aebccf22f53fb18c1282d828beb664439 Mon Sep 17 00:00:00 2001 From: Anton Bannykh Date: Tue, 15 Nov 2016 16:49:31 +0300 Subject: [PATCH] Removed reified to fix the bootstrap. The @library annotation prevents from making the function inline. --- js/js.libraries/src/core/collections.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/js.libraries/src/core/collections.kt b/js/js.libraries/src/core/collections.kt index 192be3e0c91..17e6631628f 100644 --- a/js/js.libraries/src/core/collections.kt +++ b/js/js.libraries/src/core/collections.kt @@ -20,7 +20,7 @@ import java.util.Comparator import kotlin.comparisons.naturalOrder @library("copyToArray") -public fun Collection.toTypedArray(): Array = noImpl +public fun Collection.toTypedArray(): Array = noImpl @library("copyToArrayImpl")