1use crate::records::function_bytecode_summary::FunctionBytecodeSummary; 2 3impl FunctionBytecodeSummary { 4 pub fn get_name(&self) -> &str { 5 &self.name 6 } 7}