Implement stub methods generation for Kotlin Immutable Collection classes.

This change is to fill the gap between Kotlin Collection
classes(immutable) and Java Collection classes(mutable), to avoid
calling an unsupported operation like remove() on an immutable class in
jvm.
This commit is contained in:
Jiaxiang Chen
2019-04-02 14:02:15 -07:00
committed by Georgy Bronnikov
parent 8c3cef97bd
commit afcbd76c9e
22 changed files with 259 additions and 19 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM
interface Addable {