refactor(ast_tools): reorder imports in generated code (#6926)

Pure refactor.
This commit is contained in:
overlookmotel 2024-10-26 14:05:18 +00:00
parent 8101d1b2c4
commit 4cf008573e
2 changed files with 4 additions and 4 deletions

View file

@ -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);

View file

@ -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")]