Skip to main content

luaur_analysis/methods/
property_is_write_only.rs

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