-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlib.rs
45 lines (37 loc) · 1.43 KB
/
lib.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
pub mod oxc {
use std::path::Path;
use oxc::{allocator::Allocator, parser::Parser, span::SourceType};
pub fn parse(path: &Path, source: &str) -> Allocator {
let allocator = Allocator::default();
let source_type = SourceType::from_path(path).unwrap();
_ = Parser::new(&allocator, source, source_type).parse();
allocator
}
}
pub mod swc {
use std::path::Path;
use swc_ecma_ast::Module;
use swc_ecma_parser::{EsSyntax, Parser, StringInput, Syntax, TsSyntax};
pub fn parse(path: &Path, source: &str) -> Module {
let syntax = match path.extension().unwrap().to_str().unwrap() {
"js" => Syntax::Es(EsSyntax::default()),
"tsx" => Syntax::Typescript(TsSyntax {
tsx: true,
..TsSyntax::default()
}),
_ => panic!("need to define syntax for swc"),
};
let input = StringInput::new(source, Default::default(), Default::default());
Parser::new(syntax, input, None).parse_module().unwrap()
}
}
pub mod biome {
use std::path::Path;
use biome_js_parser::{JsParserOptions, Parse};
use biome_js_syntax::{AnyJsRoot, JsFileSource};
pub fn parse(path: &Path, source: &str) -> Parse<AnyJsRoot> {
let options = JsParserOptions::default();
let source_type = JsFileSource::try_from(path).unwrap();
biome_js_parser::parse(source, source_type, options)
}
}