use std::path::PathBuf;
use crate::utils::parse_format;
#[derive(Debug, Clone, Eq, PartialEq)]
pub enum ExtendFormat {
TEXT,
JSON,
HJSON,
TOML,
ARC,
YAML,
}
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct ExtendStatement {
format: ExtendFormat,
path: Option<PathBuf>,
}
impl ExtendStatement {
pub fn new(_format: String, _path: String, _this: Option<PathBuf>) -> Box<Self> {
unimplemented!()
}
}