Skip to main content

luaur_analysis/methods/
runtime_error_operator_eq.rs

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