Skip to main content

luaur_analysis/methods/
property_is_read_write.rs

1use crate::records::property_type::Property;
2
3impl Property {
4    #[inline]
5    pub fn isReadWrite(&self) -> bool {
6        self.read_ty.is_some() && self.write_ty.is_some()
7    }
8}