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