[JS IR BE] Initial version of member namer

This commit is contained in:
Svyatoslav Kuzmich
2019-06-17 16:37:33 +03:00
parent 3e10de9cd1
commit 0b19a4a32b
14 changed files with 222 additions and 125 deletions
@@ -4,6 +4,8 @@
*/
package kotlin.collections
import kotlin.js.JsName
/**
* Provides a skeletal implementation of the read-only [Collection] interface.
*
@@ -28,6 +30,7 @@ public abstract class AbstractCollection<out E> protected constructor() : Collec
/**
* Returns new array of type `Array<Any?>` with the elements of this collection.
*/
@JsName("toArray")
protected open fun toArray(): Array<Any?> = copyToArrayImpl(this)
/**