org.jetbrains.kotlin.metadata.deserialization.versionSpecificBehavior.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2018 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.metadata.deserialization
// The purpose of utilities in this file is to support different behavior in deserialization according to the given binary file's version.
//
// For example, if we find a bug in serialization/deserialization and would like to fix it _remaining compatible_ with two latest versions
// of Kotlin, we can use methods of this class to fix deserialization of the "future" binaries, and later (in the next major version)
// fix the bug in serialization when the binary version advances to the value supported in the first bug fix.
/**
* Before metadata version 1.4, version requirements for nested classes were deserialized incorrectly: the version requirement table was
* loaded from the outermost class and passed to the nested classes and their members, even though indices of their version requirements
* were pointing to the other table stored in the nested class (which was not read by deserialization). See KT-25120 for more information.
*/
fun isVersionRequirementTableWrittenCorrectly(version: BinaryVersion): Boolean =
isKotlin1Dot4OrLater(version)
fun isKotlin1Dot4OrLater(version: BinaryVersion): Boolean =
(version.major == 1 && version.minor >= 4) || version.major > 1