Skip to main content

luaur_code_gen/methods/
const_prop_state_clear.rs

1use crate::records::const_prop_state::ConstPropState;
2
3impl ConstPropState {
4    pub fn clear_const_prop_state(&mut self) {
5        self.clear();
6    }
7}