use crate::error::Error;
use crate::generators::CodeGen;
use std::fs::File;
use std::io::Write;
pub struct BackwardCompatibleGen {}
impl BackwardCompatibleGen {
pub fn new() -> Self {
Self {}
}
}
impl Default for BackwardCompatibleGen {
fn default() -> Self {
Self::new()
}
}
impl CodeGen for BackwardCompatibleGen {
fn generate_code(&mut self, file: &mut File) -> Result<(), Error> {
writeln!(
file,
"static BACKWARD_COMPATIBLE: [(Codepoints, DerivedPropertyValue); 0] = [",
)?;
writeln!(file, "];")?;
Ok(writeln!(file)?)
}
}