about summary refs log tree commit diff
path: root/compiler/rustc_interface/src/lib.rs
AgeCommit message (Collapse)AuthorLines
2021-09-23Simplify scoped_threadMark Rousskov-0/+1
Avoids a bunch of manual pointer manipulation.
2021-06-08Don't use a generator for BoxedResolverbjorn3-2/+0
The generator is non-trivial and requires unsafe code anyway. Using regular unsafe code without a generator is much easier to follow.
2021-05-31Remove unused feature gatesbjorn3-1/+0
2021-02-01Box the biggest ast::ItemKind variantsDániel Buga-0/+1
2020-11-10Merge set_panic and set_print into set_output_capture.Mara Bos-1/+1
There were no use cases for setting them separately. Merging them simplifies some things.
2020-08-30datastructures: replace `once_cell` crate with an impl from stdmarmeladema-0/+1
2020-08-30mv compiler to compiler/mark-0/+21