Skip to main content

luaur_code_gen/methods/
function_bytecode_summary_get_source.rs

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