[K/N] Move Native-specific mangle constants to more suitable places

They shouldn't be mixed with target-independent constants.
This commit is contained in:
Sergej Jaskiewicz
2023-09-05 16:55:34 +02:00
committed by teamcity
parent 08a9e7eae9
commit 9eba17d631
4 changed files with 18 additions and 20 deletions
@@ -43,13 +43,5 @@ enum class MangleConstant(val prefix: Char, val separator: Char, val suffix: Cha
const val LOCAL_DECLARATION_INDEX_PREFIX = '$'
const val JAVA_FIELD_SUFFIX = "#jf"
const val FUN_PREFIX = "kfun"
const val CLASS_PREFIX = "kclass"
const val FIELD_PREFIX = "kfield"
const val OBJC_MARK = "objc:"
const val OBJC_CONSTRUCTOR_MARK = "#Constructor"
const val OBJC_PROPERTY_ACCESSOR_MARK = "#Accessor"
}
}