fn pushIndentation(self: *Stringify, mode: IndentationMode) !void
fn pushIndentation(self: *Stringify, mode: IndentationMode) !void { switch (safety_checks) { .checked_to_fixed_depth => { BitStack.pushWithStateAssumeCapacity(&self.nesting_stack, &self.indent_level, @backingInt(mode)); }, .assumed_correct => { self.indent_level += 1; }, } }