Skip to main content

luaur_analysis/methods/
unexpected_array_like_table_item_operator_eq.rs

1use crate::records::unexpected_array_like_table_item::UnexpectedArrayLikeTableItem;
2
3impl UnexpectedArrayLikeTableItem {
4    #[inline]
5    pub fn operator_eq(&self, _other: &UnexpectedArrayLikeTableItem) -> bool {
6        true
7    }
8}