Skip to main content

luaur_ast/methods/
parse_error_get_location.rs

1use crate::records::location::Location;
2use crate::records::parse_error::ParseError;
3
4impl ParseError {
5    pub fn get_location(&self) -> &Location {
6        &self.location
7    }
8}