1use crate::records::sym_def::SymDef; 2 3impl SymDef { 4 pub fn sym_def_name(&self) -> alloc::string::String { 5 self.name() 6 } 7}