1use crate::records::ast_json_encoder::AstJsonEncoder; 2 3impl AstJsonEncoder { 4 pub fn pop_comma(&mut self, c: bool) { 5 self.comma = c; 6 } 7}