1use crate::records::module::Module; 2 3impl Module { 4 pub fn has_module_scope(&self) -> bool { 5 !self.scopes.is_empty() 6 } 7}