Skip to main content

luaur_ast/methods/
ast_stat_as_stat.rs

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}