1use crate::records::bytecode_builder::BytecodeBuilder; 2 3impl BytecodeBuilder { 4 pub fn emit_label(&self) -> usize { 5 self.insns.len() 6 } 7}