snix/tvix/eval/src/main.rs
Vincent Ambo 92c53fe982 feat(tvix/tests): check in Nix' language test suite
This adds scaffolding code for running the Nix language test suite.

The majority of eval-okay-* tests should eventually be runnable as-is
by Tvix, however the eval-fail-* tests might not as we intend to have
more useful error messages than upstream Nix.

Change-Id: I4f3227f0889c55e4274b804a3072850fb78dd1bd
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6126
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: grfn <grfn@gws.fyi>
2022-08-24 21:25:41 +00:00

57 lines
1 KiB
Rust

use std::{
env, fs,
io::{self, Write},
mem, process,
};
mod chunk;
mod compiler;
mod errors;
mod eval;
mod opcode;
mod value;
mod vm;
#[cfg(test)]
mod tests;
fn main() {
let mut args = env::args();
if args.len() > 2 {
println!("Usage: tvix-eval [script]");
process::exit(1);
}
if let Some(file) = args.nth(1) {
run_file(&file);
} else {
run_prompt();
}
}
fn run_file(file: &str) {
let contents = fs::read_to_string(file).expect("failed to read the input file");
run(contents);
}
fn run_prompt() {
let mut line = String::new();
loop {
print!("> ");
io::stdout().flush().unwrap();
io::stdin()
.read_line(&mut line)
.expect("failed to read user input");
run(mem::take(&mut line));
line.clear();
}
}
fn run(code: String) {
match eval::interpret(&code) {
Ok(result) => println!("=> {} :: {}", result, result.type_of()),
Err(err) => eprintln!("{}", err),
}
}