Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/oxc_ast/src/generated/assert_layouts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions tasks/ast_tools/src/generators/assert_layouts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down
Loading