Skip to content

Commit

Permalink
perf(semantic): reduce AstNodeId to u32
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Jul 15, 2024
1 parent 8faa5e8 commit 8a26b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/oxc_syntax/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use bitflags::bitflags;
use oxc_index::define_index_type;

define_index_type! {
pub struct AstNodeId = usize;
pub struct AstNodeId = u32;
}

impl AstNodeId {
Expand Down

0 comments on commit 8a26b26

Please sign in to comment.