1use crate::records::ast_stat::AstStat; 2 3impl AstStat { 4 pub fn as_stat(&mut self) -> *mut AstStat { 5 self as *mut Self 6 } 7}