Skip to main content

luaur_analysis/methods/
stringifier_state_indent.rs

1use crate::records::stringifier_state::StringifierState;
2
3impl StringifierState {
4    pub fn indent(&mut self) {
5        self.indentation += 4;
6    }
7}