Skip to main content

luaur_code_gen/methods/
function_bytecode_summary_get_name.rs

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