| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2021-03-16 | ast/hir: Rename field-related structures | Vadim Petrochenkov | -2/+2 | |
| StructField -> FieldDef ("field definition") Field -> ExprField ("expression field", not "field expression") FieldPat -> PatField ("pattern field", not "field pattern") Also rename visiting and other methods working on them. | ||||
| 2021-03-09 | Remove hir::Item::attrs. | Camille GILLOT | -10/+11 | |
| 2021-03-09 | Remove hir::ImplItem::attrs. | Camille GILLOT | -3/+3 | |
| 2021-03-09 | Remove hir::TraitItem::attrs. | Camille GILLOT | -3/+3 | |
| 2021-03-09 | Remove hir::ForeignItem::attrs. | Camille GILLOT | -4/+5 | |
| 2021-03-09 | Remove hir::StructField::attrs. | Camille GILLOT | -2/+3 | |
| 2021-02-15 | Only store a LocalDefId in hir::ForeignItem. | Camille GILLOT | -2/+2 | |
| 2021-02-15 | Only store a LocalDefId in hir::ImplItem. | Camille GILLOT | -1/+1 | |
| 2021-02-15 | Only store a LocalDefId in hir::Item. | Camille GILLOT | -2/+6 | |
| Items are guaranteed to be HIR owner. | ||||
| 2021-01-14 | Use Option::map_or instead of `.map(..).unwrap_or(..)` | LingMan | -1/+1 | |
| 2021-01-12 | Separate out a `hir::Impl` struct | Joshua Nelson | -2/+2 | |
| This makes it possible to pass the `Impl` directly to functions, instead of having to pass each of the many fields one at a time. It also simplifies matches in many cases. | ||||
| 2020-12-22 | Rework beautify_doc_string so that it returns a Symbol instead of a String | Guillaume Gomez | -1/+1 | |
| 2020-10-27 | Show the inline stack of MIR lints that only occur after inlining | Oliver Scherer | -1/+3 | |
| 2020-10-25 | Use its own `TypeckResults` to avoid ICE | Yuki Okushi | -3/+8 | |
| 2020-09-23 | /nightly/nightly-rustc | Erik Hofmayer | -1/+1 | |
| 2020-09-23 | Updated html_root_url for compiler crates | Erik Hofmayer | -1/+1 | |
| 2020-09-10 | use push(char) instead of push_str(&str) to add single chars to strings | Matthias Krüger | -1/+1 | |
| clippy::single-char-push-str | ||||
| 2020-09-04 | Change ty.kind to a method | LeSeulArtichaut | -3/+3 | |
| 2020-09-02 | pretty: trim paths of unique symbols | Dan Aloni | -23/+25 | |
| If a symbol name can only be imported from one place for a type, and as long as it was not glob-imported anywhere in the current crate, we can trim its printed path and print only the name. This has wide implications on error messages with types, for example, shortening `std::vec::Vec` to just `Vec`, as long as there is no other `Vec` importable anywhere. This adds a new '-Z trim-diagnostic-paths=false' option to control this feature. On the good path, with no diagnosis printed, we should try to avoid issuing this query, so we need to prevent trimmed_def_paths query on several cases. This change also relies on a previous commit that differentiates between `Debug` and `Display` on various rustc types, where the latter is trimmed and presented to the user and the former is not. | ||||
| 2020-08-30 | mv compiler to compiler/ | mark | -0/+1095 | |
