Skip to main content

luaur_analysis/methods/
internal_error_operator_eq.rs

1use crate::records::internal_error::InternalError;
2
3impl InternalError {
4    #[inline]
5    pub fn operator_eq(&self, rhs: &InternalError) -> bool {
6        self.message == rhs.message
7    }
8}