use crate::ast::Literal; pub trait LLVMIRTranslation { fn llvm_translate(&self) -> Result; } impl LLVMIRTranslation for crate::ast::Literal { fn llvm_translate(&self) -> Result { todo!() } }