use crate::generator::{common::Project, GenerateProject};
use crate::Result;
use std::path::Path;
#[allow(dead_code)]
type ChiselResult = Result<String>;
pub struct ChiselConfig {
#[allow(dead_code)]
gen_suffix: Option<String>,
}
impl Default for ChiselConfig {
fn default() -> Self {
ChiselConfig {
gen_suffix: Some("gen".to_string()),
}
}
}
#[derive(Default)]
#[allow(dead_code)]
pub struct ChiselBackEnd {
config: ChiselConfig,
}
#[allow(unused_variables)]
impl GenerateProject for ChiselBackEnd {
fn generate(&self, project: &Project, path: impl AsRef<Path>) -> Result<()> {
unimplemented!();
}
}