This commit is contained in:
Toshit Chawda 2024-07-26 21:42:45 -07:00
parent 695310fce9
commit 544134f800
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
3 changed files with 26 additions and 44 deletions

View file

@ -5,16 +5,6 @@ use std::{
str::{from_utf8, FromStr},
};
use oxc_allocator::Allocator;
use oxc_ast::{
ast::{AssignmentTarget, Class, Function, IdentifierReference, MemberExpression, TSImportType},
visit::walk,
Visit,
};
use oxc_parser::Parser;
use oxc_span::{SourceType, Span};
use oxc_syntax::scope::ScopeFlags;
pub mod rewrite;
use rewrite::rewrite;
@ -40,7 +30,6 @@ fn main() -> std::io::Result<()> {
.as_slice()
)
.unwrap()
.to_string()
);
Ok(())