Skip to main content

luaur_analysis/methods/
property_make_shared.rs

1use crate::records::property_type::Property;
2
3impl Property {
4    pub fn makeShared(&mut self) {
5        if self.write_ty.is_some() {
6            self.write_ty = self.read_ty;
7        }
8    }
9}