Files
fudge2.1/src/codegen/llvm_ir.rs
2025-10-28 12:28:50 +01:00

12 lines
237 B
Rust

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