Skip to content

Commit 956ef8d

Browse files
committed
u
1 parent 650e713 commit 956ef8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pub mod oxc {
33

44
use oxc::{
55
allocator::Allocator,
6-
codegen::CodeGenerator,
6+
codegen::Codegen,
77
parser::Parser,
88
semantic::SemanticBuilder,
99
span::SourceType,
@@ -30,7 +30,7 @@ pub mod oxc {
3030
let ret =
3131
Transformer::new(&allocator, path, options).build_with_scoping(scoping, &mut program);
3232
assert!(ret.errors.is_empty());
33-
let printed = CodeGenerator::new().build(&program).code;
33+
let printed = Codegen::new().build(&program).code;
3434

3535
(allocator, printed)
3636
}

0 commit comments

Comments
 (0)