Files
fudge2.1/src/codegen/llvm_ir.rs

12 lines
237 B
Rust
Raw Normal View History

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!()
}
}