mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 12:19:15 +00:00
refactor(ast_tools): reorder imports in generated code (#6926)
Pure refactor.
This commit is contained in:
parent
8101d1b2c4
commit
4cf008573e
2 changed files with 4 additions and 4 deletions
|
|
@ -3,10 +3,10 @@
|
|||
|
||||
use std::mem::{align_of, offset_of, size_of};
|
||||
|
||||
use crate::ast::*;
|
||||
|
||||
use oxc_regular_expression::ast::*;
|
||||
|
||||
use crate::ast::*;
|
||||
|
||||
#[cfg(target_pointer_width = "64")]
|
||||
const _: () = {
|
||||
assert!(size_of::<BooleanLiteral>() == 12usize);
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ impl Generator for AssertLayouts {
|
|||
use std::mem::{align_of, offset_of, size_of};
|
||||
|
||||
///@@line_break
|
||||
use crate::ast::*;
|
||||
use oxc_regular_expression::ast::*;
|
||||
|
||||
///@@line_break
|
||||
use oxc_regular_expression::ast::*;
|
||||
use crate::ast::*;
|
||||
|
||||
///@@line_break
|
||||
#[cfg(target_pointer_width = "64")]
|
||||
|
|
|
|||
Loading…
Reference in a new issue