swc/common/src/pos/mod.rs

16 lines
340 B
Rust
Raw Normal View History

//! This module is almost copied from [rustc_errors][].
//!
//! Modified a bit because, unlike rustc, we
//!
//! - work with lot of files (node_modules).
//! - need source information in every run (I think?)
//!
//!
//!-----
//!
//![rustc_errors]:TODO
pub use self::span::*;
pub use syntax_pos::{FileMap, FileName, MultiSpan};
mod span;