Skip to main content

luaur_ast/methods/
parse_errors_what.rs

1use crate::records::parse_errors::ParseErrors;
2
3impl ParseErrors {
4    pub fn what(&self) -> &str {
5        &self.message
6    }
7}