about summary refs log tree commit diff
path: root/src/libsyntax_pos/source_map.rs
AgeCommit message (Collapse)AuthorLines
2019-11-22Retire impl_stable_hash_for_spanned.Camille GILLOT-1/+1
2019-11-15Remove SourceMapper traitMark Rousskov-34/+8
SourceMap is now in the root of all rustc-specific crates, syntax_pos, so there's no need for the trait object to decouple the dependencies between librustc_errors and libsyntax as was needed previously.
2019-11-15Move SourceMap to syntax_posMark Rousskov-0/+1035
This does not update the use sites or delete the now unnecessary SourceMapper trait, to allow git to interpret the file move as a rename rather than a new file.