oxc/crates/oxc_module_lexer/examples/module_lexer.rs
Boshen 982e6f08df chore: make println and eprintln opt-in (#3712)
I noticed accidental `println` can be merged, which isn't really nice.
2024-06-17 10:40:34 +00:00

47 lines
1.3 KiB
Rust

#![allow(clippy::print_stdout)]
use std::{env, path::Path};
use oxc_allocator::Allocator;
use oxc_module_lexer::ModuleLexer;
use oxc_parser::Parser;
use oxc_span::SourceType;
// Instruction:
// * create a `test.js`
// * `just example module_lexer
fn main() -> Result<(), String> {
let name = env::args().nth(1).unwrap_or_else(|| "test.js".to_string());
let path = Path::new(&name);
let source_text = std::fs::read_to_string(path).map_err(|_| format!("Missing '{name}'"))?;
let allocator = Allocator::default();
let source_type = SourceType::from_path(path).unwrap();
let ret = Parser::new(&allocator, &source_text, source_type).parse();
println!("source:");
println!("{source_text}");
for error in ret.errors {
let error = error.with_source_code(source_text.clone());
println!("{error:?}");
println!("Parsed with Errors.");
}
let ModuleLexer { imports, exports, facade, has_module_syntax } =
ModuleLexer::new().build(&ret.program);
println!("\nimports:");
for import in imports {
println!("{import:?}");
}
println!("\nexports:");
for export in exports {
println!("{export:?}");
}
println!("\nfacade: {facade}");
println!("has_module_syntax {has_module_syntax}");
Ok(())
}