Skip to content
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
1 change: 0 additions & 1 deletion crates/oxc_estree_tokens/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
//! Both implementations also convert UTF-8 spans to UTF-16.

mod context;
mod estree_kind;
mod json;
mod jsx_state;
mod options;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ use oxc_ast_visit::{
};
use oxc_parser::{Kind, Token};

use crate::{
context::Context, estree_kind::ESTreeKind, options::ESTreeTokenConfig, visitor::Visitor,
};
use crate::{context::Context, options::ESTreeTokenConfig, visitor::Visitor};

mod estree_kind;
use estree_kind::ESTreeKind;

/// Walk AST and convert all token kinds to `ESTreeKind` discriminants.
/// Also convert token spans from UTF-8 byte offsets to UTF-16 offsets.
Expand Down
Loading