oxc/crates/oxc_regular_expression/src
overlookmotel 3858221f45 refactor(global): sort imports (#7883)
Pure refactor. Re-order imports for clarity:

1. `std`
2. External crates
3. `oxc_*` crates
4. Current crate `use crate::...`
5. Super `use super::...`
6. Local modules

This order is from "furthest away" to "closest". This makes it clearer to see what is coming from where.

`cargo +nightly fmt` (#7877) did a lot of the work, but unfortunately `rustfmt` does not have an option to (a) put workspace crates in a separate block from external crates and (b) move `mod` statements to after `use` statements.
2024-12-14 15:07:21 +00:00
..
ast_impl refactor(global): sort imports (#7883) 2024-12-14 15:07:21 +00:00
generated chore(deps): update dependency rust to v1.83.0 (#7537) 2024-11-29 07:25:36 +00:00
parser style(rust): cargo +nightly fmt (#7877) 2024-12-14 06:03:31 +00:00
ast.rs chore: Rust v1.83.0 changes (#7535) 2024-11-29 11:59:45 +08:00
diagnostics.rs feat(regular_expression): Intro ConstructorParser(and LiteralParser) to handle escape sequence in RegExp('pat') (#6635) 2024-10-21 07:07:27 +00:00
lib.rs fix(regular_expression)!: Migrate to new regexp parser API (#6741) 2024-10-22 05:34:18 +00:00
options.rs feat(regular_expression): Intro ConstructorParser(and LiteralParser) to handle escape sequence in RegExp('pat') (#6635) 2024-10-21 07:07:27 +00:00
surrogate_pair.rs refactor(regular_expression): correct typo (#5429) 2024-09-04 00:54:22 +00:00