Brian Stanek
05/20/2019, 2:48 PMclass ListLike(val list: List<String>) {}
works great, but
class ListLike(val list: List<String>) : List<String> by list {}
does not generate an entry in the iOS framework. However, the javascript modules does create all the delegating methods.
Is this a known limitation?svyatoslav.scherbina
05/20/2019, 2:49 PMIs this a known limitation?Yes. Some special classes like custom collection implementations aren’t included to framework API.
svyatoslav.scherbina
05/20/2019, 2:50 PMBrian Stanek
05/20/2019, 2:54 PMBrian Stanek
05/20/2019, 5:38 PMBrian Stanek
05/20/2019, 5:38 PMBrian Stanek
05/20/2019, 5:38 PMsvyatoslav.scherbina
05/20/2019, 5:41 PM