pub fn endObject(self: *Stringify) Error!void
pub fn endObject(self: *Stringify) Error!void { if (build_mode_has_safety) assert(self.raw_streaming_mode == .none); self.popIndentation(.object); switch (self.next_punctuation) { .none => {}, .comma => { try self.indent(); }, .the_beginning, .colon => unreachable, } try self.writer.writeByte('}'); self.valueDone(); }