mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
13 lines
313 B
Rust
13 lines
313 B
Rust
//! Source positions and related helper functions.
|
|
//!
|
|
//! <https://doc.rust-lang.org/beta/nightly-rustc/rustc_span>
|
|
|
|
mod atom;
|
|
mod source_type;
|
|
mod span;
|
|
|
|
pub use crate::{
|
|
atom::Atom,
|
|
source_type::{Language, LanguageVariant, ModuleKind, SourceType, VALID_EXTENSIONS},
|
|
span::{GetSpan, Span, SPAN},
|
|
};
|