JS: don't remove imports only used for fake overrides (KT-31007 fixed)

This commit is contained in:
Anton Bannykh
2019-04-16 15:38:47 +03:00
parent 6113e66e7a
commit c6d177b467
5 changed files with 39 additions and 1 deletions
@@ -18,6 +18,6 @@ package org.jetbrains.kotlin.js.backend.ast
class JsClassModel(val name: JsName, val superName: JsName?) {
val interfaces: MutableSet<JsName> = mutableSetOf()
val preDeclarationBlock = JsGlobalBlock()
val preDeclarationBlock = JsGlobalBlock() // TODO only used in IR backend => hide from current backend
val postDeclarationBlock = JsGlobalBlock()
}