CompiledSource

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

Types

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

Functions

serializeTo
Link copied to clipboard
open override fun serializeTo(buffer: Buffer)
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>
stringPool
Link copied to clipboard
val stringPool: List<String>