Skip to content

Commit

Permalink
refactor(transformer): re-order imports (#5499)
Browse files Browse the repository at this point in the history
Style nit. Re-order imports to make it clearer what types are external/internal to crate.
  • Loading branch information
overlookmotel committed Sep 5, 2024
1 parent 6abde0a commit a96866d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/oxc_transformer/src/regexp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,8 @@
//! - @babel/plugin-transform-unicode-sets-regex: <https://babeljs.io/docs/en/babel-plugin-proposal-unicode-sets-regex>
//! - TC39 Proposal: <https://github.com/tc39/proposal-regexp-set-notation>

mod options;

use std::borrow::Cow;

pub use options::RegExpOptions;
use oxc_ast::ast::*;
use oxc_diagnostics::Result;
use oxc_regular_expression::ast::{
Expand All @@ -56,6 +53,9 @@ use oxc_traverse::{Traverse, TraverseCtx};

use crate::context::Ctx;

mod options;
pub use options::RegExpOptions;

pub struct RegExp<'a> {
ctx: Ctx<'a>,
unsupported_flags: RegExpFlags,
Expand Down

0 comments on commit a96866d

Please sign in to comment.