1use luaur_ast::records::location::Location; 2 3#[derive(Debug, Clone, PartialEq, Eq, Hash)] 4pub struct ErrorSnapshot { 5 pub message: alloc::string::String, 6 pub location: Location, 7}