turansky
10/02/2019, 6:54 AMprototype
via compiler plugin?
// Kotlin
class A: B
// compiled JS
A.prototype = Object.create(B)
// compiled JS + enrich
A.prototype = Object.create(enrichMethod(B))
Can it be realized using JsSyntheticTranslateExtension
?turansky
10/02/2019, 3:40 PMbashor
10/07/2019, 8:36 PMenrichMethod
?bashor
10/07/2019, 8:38 PMJsSyntheticTranslateExtension
can’t help you to change generated code in this placebashor
10/07/2019, 8:39 PMObject.create
in generated code 🙂turansky
10/08/2019, 7:49 AMbashor
10/08/2019, 10:34 AM