KotlinFileStubForIde: save full facadeFqName

Prefix is not necessarily same as packageFqName since JvmPackageName was introduced
This commit is contained in:
Pavel V. Talanov
2018-02-22 20:18:07 +01:00
parent 9e061555af
commit d2b90b84f8
3 changed files with 14 additions and 14 deletions
@@ -23,12 +23,12 @@ object KotlinStubVersions {
// Though only kotlin declarations (no code in the bodies) are stubbed, please do increase this version
// if you are not 100% sure it can be avoided.
// Increasing this version will lead to reindexing of all kotlin source files on the first IDE startup with the new version.
const val SOURCE_STUB_VERSION = 125
const val SOURCE_STUB_VERSION = 126
// Binary stub version should be increased if stub format (org.jetbrains.kotlin.psi.stubs.impl) is changed
// or changes are made to the core stub building code (org.jetbrains.kotlin.idea.decompiler.stubBuilder).
// Increasing this version will lead to reindexing of all binary files that are potentially kotlin binaries (including all class files).
private const val BINARY_STUB_VERSION = 63
private const val BINARY_STUB_VERSION = 64
// Classfile stub version should be increased if changes are made to classfile stub building subsystem (org.jetbrains.kotlin.idea.decompiler.classFile)
// Increasing this version will lead to reindexing of all classfiles.