about summary refs log tree commit diff
path: root/src/librustc_span/span_encoding.rs
AgeCommit message (Collapse)AuthorLines
2020-08-30mv compiler to compiler/mark-133/+0
2020-08-09rustc_span: use IndexSet in SpanInternerJosh Stone-12/+5
2020-07-09Eliminate confusing "globals" terminology.Nicholas Nethercote-2/+2
There are some structures that are called "globals", but are they global to a compilation session, and not truly global. I have always found this highly confusing, so this commit renames them as "session globals" and adds a comment explaining things. Also, the commit fixes an unnecessary nesting of `set()` calls `src/librustc_errors/json/tests.rs`
2019-12-30Rename directories for some crates from `syntax_x` to `rustc_x`Vadim Petrochenkov-0/+140
`syntax_expand` -> `rustc_expand` `syntax_pos` -> `rustc_span` `syntax_ext` -> `rustc_builtin_macros`