mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
16 lines
340 B
Rust
16 lines
340 B
Rust
|
//! 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;
|