1 2 3 4 5 6 7 8
use crate::records::builtin::Builtin; use luaur_ast::records::ast_name::AstName; impl Builtin { pub fn empty(&self) -> bool { self.object == AstName::default() && self.method == AstName::default() } }