nargo-compiler 0.0.0

Nargo compiler core
Documentation
1
2
3
4
5
6
7
8
9
use nargo_ir::IRModule;
use nargo_types::Result;

pub trait Backend {
    type Output;
    fn generate(&self, ir: &IRModule) -> Result<Self::Output>;
}

// 其他后端已迁移到 nargo-bundler