Skip to content

Commit

Permalink
feat(semantic): re-export all flags and ID types
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Dec 14, 2024
1 parent 7637aac commit 0bdc858
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/oxc_semantic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ use oxc_ast::{
};
use oxc_cfg::ControlFlowGraph;
use oxc_span::{GetSpan, SourceType, Span};
// Re-export flags and ID types
pub use oxc_syntax::{
node::{NodeFlags, NodeId},
reference::{ReferenceFlags, ReferenceId},
scope::{ScopeFlags, ScopeId},
symbol::{SymbolFlags, SymbolId},
};
Expand All @@ -38,8 +41,8 @@ use class::ClassTable;
pub use crate::{
builder::{SemanticBuilder, SemanticBuilderReturn},
jsdoc::{JSDoc, JSDocFinder, JSDocTag},
node::{AstNode, AstNodes, NodeId},
reference::{Reference, ReferenceFlags, ReferenceId},
node::{AstNode, AstNodes},
reference::Reference,
scope::ScopeTree,
stats::Stats,
symbol::{IsGlobalReference, SymbolTable},
Expand Down

0 comments on commit 0bdc858

Please sign in to comment.