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.

30 lines
842 B

use crate::generator::Generator;
3 years ago
use std::fs::File;
use std::io::Read;
use std::io::Write;
3 years ago
mod generator;
3 years ago
mod lexer;
mod parser;
mod util;
3 years ago
fn main() -> Result<(), String> {
let mut file = File::open("examples/playground.sb").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);
let mut file = std::fs::File::create("examples_out/out.js").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
}