about summary refs log tree commit diff
path: root/src/librustc_span/source_map
AgeCommit message (Collapse)AuthorLines
2020-08-30mv compiler to compiler/mark-272/+0
2020-04-11Normalize source when loading external foreign source into SourceMapArlo Siemsen-0/+56
The compiler normalizes source when reading files initially (removes BOMs, etc), but not when loading external sources. Fixes #70874 by normalizing when loading external sources too. Adds a test to verify normalization.
2019-12-30Rename directories for some crates from `syntax_x` to `rustc_x`Vadim Petrochenkov-0/+216
`syntax_expand` -> `rustc_expand` `syntax_pos` -> `rustc_span` `syntax_ext` -> `rustc_builtin_macros`