tvl-depot/users/glittershark/achilles/src/main.rs

37 lines
691 B
Rust
Raw Normal View History

2021-03-07 21:29:59 +01:00
use clap::Clap;
pub mod ast;
pub mod codegen;
pub(crate) mod commands;
pub(crate) mod common;
pub mod compiler;
pub mod interpreter;
pub(crate) mod passes;
#[macro_use]
2021-03-07 21:29:59 +01:00
pub mod parser;
pub mod tc;
2021-03-07 21:29:59 +01:00
pub use common::{Error, Result};
#[derive(Clap)]
struct Opts {
#[clap(subcommand)]
subcommand: Command,
}
#[derive(Clap)]
enum Command {
Eval(commands::Eval),
Compile(commands::Compile),
Check(commands::Check),
2021-03-07 21:29:59 +01:00
}
fn main() -> anyhow::Result<()> {
let opts = Opts::parse();
match opts.subcommand {
Command::Eval(eval) => Ok(eval.run()?),
Command::Compile(compile) => Ok(compile.run()?),
Command::Check(check) => Ok(check.run()?),
2021-03-07 21:29:59 +01:00
}
}