CompiledSource

data class CompiledSource(longPool: List<Long>, stringPool: List<String>, functionParameters: List<List<CompiledParameter>>, functions: List<CompiledFunction>, sections: List<CompiledSection>, nodes: List<CompiledNode>) : Serializable

Types

Companion
Link copied to clipboard
object Companion : Deserializer<CompiledSource>

Functions

longConst
Link copied to clipboard
fun longConst(index: Int): Long
longConstOrNull
Link copied to clipboard
fun longConstOrNull(index: Int): Long?
serializeTo
Link copied to clipboard
open override fun serializeTo(buffer: Buffer)
stringConst
Link copied to clipboard
fun stringConst(index: Int): String
stringConstOrNull
Link copied to clipboard
fun stringConstOrNull(index: Int): String?
toBytes
Link copied to clipboard
open fun toBytes(): ByteString

Properties

functionParameters
Link copied to clipboard
val functionParameters: List<List<CompiledParameter>>
functions
Link copied to clipboard
val functions: List<CompiledFunction>
longPool
Link copied to clipboard
val longPool: List<Long>
nodes
Link copied to clipboard
val nodes: List<CompiledNode>
sections
Link copied to clipboard
val sections: List<CompiledSection>
stringPool
Link copied to clipboard
val stringPool: List<String>