You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.3 KiB

3 years ago
extern crate structopt;
use crate::generator::Generator;
3 years ago
use crate::Opt::Build;
3 years ago
use std::fs::File;
use std::io::Read;
use std::io::Write;
3 years ago
use std::path::PathBuf;
use structopt::StructOpt;
3 years ago
mod generator;
3 years ago
mod lexer;
mod parser;
mod util;
3 years ago
3 years ago
#[derive(StructOpt, Debug)]
enum Opt {
#[structopt()]
Build {
#[structopt(default_value = "./examples/playground.sb")]
in_file: PathBuf,
#[structopt(short, long, default_value = "./examples_out/playground.js")]
out_file: PathBuf,
},
}
fn main() -> Result<(), String> {
3 years ago
let opts = Opt::from_args();
let (in_file, out_file) = match opts {
Build { in_file, out_file } => (in_file, out_file),
};
let mut file = File::open(in_file).expect("Could not open file");
3 years ago
let mut contents = String::new();
file.read_to_string(&mut contents)
.expect("Could not read file");
3 years ago
let tokens = lexer::tokenize(&contents);
3 years ago
// let ast = parser::parse(tokens.into_iter());
let program = parser::parse(tokens, Some(contents))?;
dbg!(":#?", &program);
3 years ago
let output = generator::js::JsGenerator::generate(program);
3 years ago
let mut file = std::fs::File::create(out_file).expect("create failed");
file.write_all(output.as_bytes()).expect("write failed");
file.flush().expect("Could not flush file");
3 years ago
Ok(())
3 years ago
}