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