All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.shakelang.util.jvmlib.infos.constants.ConstantNullPointer.kt Maven / Gradle / Ivy

The newest version!
package com.shakelang.util.jvmlib.infos.constants

import com.shakelang.util.io.streaming.output.DataOutputStream

class ConstantNullPointer private constructor() : ConstantInfo() {
    override val tag: Byte get() = 0x00
    override val tagName: String get() = "null"
    override fun dump(out: DataOutputStream) {}
    override val index: UShort get() = 0u

    companion object {
        val INSTANCE = ConstantNullPointer()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy