about summary refs log tree commit diff
AgeCommit message (Expand)AuthorLines
2019-03-15Option and Result: Add references to documentation of as_ref and as_mutChris Gregory-4/+4
2019-03-15Elide object safety errors on non-existent trait functionEsteban Küber-21/+74
2019-03-15Auto merge of #58556 - oli-obk:imperative_recursion, r=pnkfelixbors-39/+165
2019-03-15use `!` in macro disambiguation suggestionAndy Russell-3/+6
2019-03-15replace ad-hoc namespace enumsAndy Russell-103/+72
2019-03-15overhaul intra-doc-link ambiguity warningAndy Russell-95/+266
2019-03-16a simple refactoring and removing comment.kenta7777-2/+1
2019-03-16removed some unnecessary comments.kenta7777-2/+0
2019-03-15Track changes to robots.txtKornel-0/+19
2019-03-15Remove copyright noticesDouglas Creager-42/+1
2019-03-15Add x86_64 musl host to the manifestMateusz Mikuła-0/+1
2019-03-15Revert "Deprecate std::cell::RefCell::borrow_state"Anthony Ramine-4/+0
2019-03-15Revert "Remove RefCell::borrow_state"Anthony Ramine-0/+56
2019-03-15Auto merge of #58140 - eddyb:advent-of-print, r=nikomatsakisbors-2933/+3407
2019-03-15Remove restriction on isize/usize in repr(simd)Brian Campbell-12/+34
2019-03-15reduced a code repetition related to bit operation.kenta7777-4/+3
2019-03-15rustbuild: remove obsolete fulldeps behavior from src/test/pretty tests, and ...Eduard-Mihai Burtescu-10/+3
2019-03-15Fix rebase fallout and address some review comments.Eduard-Mihai Burtescu-1/+9
2019-03-15we can now print on entering/leaving the topmost frame, and make sure it stay...Ralf Jung-16/+13
2019-03-15rustc: print ExistentialProjection with spaces around `=`, e.g. `dyn Foo<A = ...Eduard-Mihai Burtescu-21/+21
2019-03-15rustc: provide DisambiguatedDefPathData in ty::print.Eduard-Mihai Burtescu-71/+127
2019-03-15rustc: slice substs in ty::print instead of passing the full ones.Eduard-Mihai Burtescu-88/+79
2019-03-15rustc: let ty::print::pretty's p! macro call arbitrary methods.Eduard-Mihai Burtescu-35/+32
2019-03-15rustc: remove PrintCx from ty::Print and rely on printers carrying TyCtxt.Eduard-Mihai Burtescu-907/+850
2019-03-15rustc: remove the ability for pretty-printers to override nesting.Eduard-Mihai Burtescu-70/+59
2019-03-15rustc: don't thread existential projections through path_generic_args.Eduard-Mihai Burtescu-156/+251
2019-03-15rustc: make `pretty_path_generic_args`' task as simple as possible.Eduard-Mihai Burtescu-88/+70
2019-03-15rustc: print elided regions as '_ instead of nothing, and use a separate chec...Eduard-Mihai Burtescu-39/+41
2019-03-15rustc: always hide defaulted generic args, even in verbose mode.Eduard-Mihai Burtescu-27/+30
2019-03-15rustc: move ty::print::PrintConfig's fields to FmtPrinter.Eduard-Mihai Burtescu-190/+185
2019-03-15rustc: streamline the Print/fmt::Display impls in ppaux and move them to ty::...Eduard-Mihai Burtescu-425/+303
2019-03-15rustc: remove obsolete hacks from ppaux, relating to normalization under HRTB.Eduard-Mihai Burtescu-104/+142
2019-03-15rustc: move Debug impls from ppaux to ty::structural_impls.Eduard-Mihai Burtescu-287/+288
2019-03-15rustc: disconnect all the Debug functionality from ty::print.Eduard-Mihai Burtescu-210/+141
2019-03-15rustc: make util::ppaux private.Eduard-Mihai Burtescu-27/+23
2019-03-15rustc: remove fields from ty::print::PrintConfig available from tcx.Eduard-Mihai Burtescu-39/+29
2019-03-15rustc: split out the pretty-printing parts of ty::print into a separate module.Eduard-Mihai Burtescu-1275/+1324
2019-03-15rustc: move ty/print.rs to ty/print/mod.rs.Eduard-Mihai Burtescu-0/+0
2019-03-15rustc_codegen_utils: print all nominal types as paths, in symbol names.Eduard-Mihai Burtescu-2/+28
2019-03-15rustc: don't pass Namespace explicitly, but rather track it in FmtPrinter.Eduard-Mihai Burtescu-156/+102
2019-03-15rustc: introduce a ty::print::PrettyPrinter helper for printing "<...>".Eduard-Mihai Burtescu-117/+132
2019-03-15rustc: support overriding type printing in ty::print::Printer.Eduard-Mihai Burtescu-240/+295
2019-03-15rustc: support overriding region printing in ty::print::Printer.Eduard-Mihai Burtescu-137/+199
2019-03-15rustc: centralize region printing in ty::RegionKind's Print impl.Eduard-Mihai Burtescu-179/+72
2019-03-15rustc: don't keep RegionHighlightMode in a thread-local.Eduard-Mihai Burtescu-306/+334
2019-03-15rustc: pass ty::print::PrintCx by value.Eduard-Mihai Burtescu-304/+498
2019-03-15rustc: remove the closure from ppaux's p! macro (by making ? implicit).Eduard-Mihai Burtescu-134/+122
2019-03-15rustc: split off most of ty::print::PrintCx's fields into a separate struct.Eduard-Mihai Burtescu-66/+86
2019-03-15rustc: uniformize ty::print's error handling by requiring Result.Eduard-Mihai Burtescu-85/+114
2019-03-15rustc: rename ppaux' print macro to just p and make its cx input implicit.Eduard-Mihai Burtescu-173/+193