
com.wavesplatform.lang.directives.values.StdLibVersion.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lang Show documentation
Show all versions of lang Show documentation
The RIDE smart contract language compiler
The newest version!
package com.wavesplatform.lang.directives.values
import com.wavesplatform.lang.directives.{DirectiveDictionary, DirectiveKey}
sealed abstract class StdLibVersion(id: Int) extends DirectiveValue(id.toString, id) with Product with Serializable with Ordered[StdLibVersion] {
override val value: Any = id
override def key: DirectiveKey = DirectiveKey.STDLIB_VERSION
override def compare(that: StdLibVersion): Int = id compare that.id
}
case object V1 extends StdLibVersion(1)
case object V2 extends StdLibVersion(2)
case object V3 extends StdLibVersion(3)
case object V4 extends StdLibVersion(4)
case object V5 extends StdLibVersion(5)
case object V6 extends StdLibVersion(6)
case object V7 extends StdLibVersion(7)
case object V8 extends StdLibVersion(8)
object StdLibVersion {
implicit object VersionDic extends DirectiveDictionary[StdLibVersion] {
override val default: StdLibVersion = V3
override val all: Iterable[StdLibVersion] = Seq(V1, V2, V3, V4, V5, V6, V7, V8)
val latest: StdLibVersion = all.last
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy