CompiledNode

data class CompiledNode(instructions: List<Insn>, jumpLabels: List<JumpLabel>, sectionLabels: List<SectionLabel>) : Serializable

Types

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

Functions

resolveLabel
Link copied to clipboard
fun resolveLabel(code: Int): Int
serializeTo
Link copied to clipboard
open override fun serializeTo(buffer: Buffer)
toBytes
Link copied to clipboard
open fun toBytes(): ByteString

Properties

instructions
Link copied to clipboard
val instructions: List<Insn>
jumpLabels
Link copied to clipboard
val jumpLabels: List<JumpLabel>
sectionLabels
Link copied to clipboard
val sectionLabels: List<SectionLabel>