1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use crate::records::ast_name::AstName; impl AstName { pub const fn new() -> Self { Self { value: core::ptr::null(), } } } impl Default for AstName { fn default() -> Self { Self::new() } }