about summary refs log tree commit diff
path: root/src/librustc_save_analysis
AgeCommit message (Expand)AuthorLines
2020-02-15ast: normalize `ForeignItemKind::Ty` & `AssocItemKind::TyAlias`.Mazdak Farrokhzad-3/+3
2020-02-15ast: move Generics into AssocItemKindsMazdak Farrokhzad-7/+7
2020-02-13IsAsync -> enum Async { Yes { span: Span, .. }, No }Mazdak Farrokhzad-6/+6
2020-02-13Constness -> enum Const { Yes(Span), No }Mazdak Farrokhzad-8/+8
2020-02-08Make `associated_items` query return a sliceJonas Schievink-0/+2
2020-02-05parser: merge `fn` grammars wrt. bodies & headersMazdak Farrokhzad-7/+9
2020-02-02Fix ICE with save-analysisYuki Okushi-2/+2
2020-02-01syntax::print -> new crate rustc_ast_prettyMazdak Farrokhzad-14/+12
2020-01-30Use `P` for `NtTraitItem`, `NtImplItem`, and `NtForeignItem`.Nicholas Nethercote-2/+2
2020-01-26Don't use ExpnKind::descr to get the name of a bang macro.Eduard-Mihai Burtescu-7/+14
2020-01-19Add `constness` field to `ast::ItemKind::Impl`Dylan MacKenzie-0/+4
2020-01-17Use named fields for `hir::ItemKind::Impl`Dylan MacKenzie-2/+2
2020-01-17Use named fields for `ast::ItemKind::Impl`Dylan MacKenzie-15/+15
2020-01-05Remove rustc_hir reexports in rustc::hir.Mazdak Farrokhzad-7/+8
2020-01-02Normalize `syntax::source_map` imports.Mazdak Farrokhzad-2/+2
2020-01-01Rename `syntax_pos` to `rustc_span` in source codeVadim Petrochenkov-4/+4
2019-12-30Make things build againVadim Petrochenkov-1/+1
2019-12-28doc comments: Less attribute mimickingVadim Petrochenkov-9/+9
2019-12-22Format the worldMark Rousskov-674/+475
2019-12-21Use Arena inside hir::Item.Camille GILLOT-2/+2
2019-12-201. ast::Mutability::{Mutable -> Mut, Immutable -> Not}.Mazdak Farrokhzad-6/+6
2019-12-12`AssocImplKind::{Method -> Fn}`.Mazdak Farrokhzad-2/+2
2019-12-12Remove `ast::{Impl,Trait}{Item,ItemKind}`.Mazdak Farrokhzad-13/+13
2019-12-12parse: refactor fun ret ty & param tyMazdak Farrokhzad-5/+4
2019-12-12Unify `{Trait,Impl}ItemKind::TyAlias` structures.Mazdak Farrokhzad-1/+2
2019-12-12`TraitItemKind::Type` -> `TraitItemKind::TyAlias`.Mazdak Farrokhzad-1/+1
2019-12-12Use `Option` in `ImplItemKind::Method`.Mazdak Farrokhzad-1/+1
2019-12-12Use `Option` in `ImplItemKind::Const`.Mazdak Farrokhzad-1/+1
2019-12-02syntax: Remove redundant span from `ast::Mac`Vadim Petrochenkov-8/+0
2019-11-16ast: Keep `extern` qualifiers in functions more preciselyVadim Petrochenkov-8/+9
2019-11-14TAIT: adjust save-analysisMazdak Farrokhzad-48/+0
2019-11-10move syntax::parse -> librustc_parseMazdak Farrokhzad-4/+3
2019-11-08ast::ItemKind::Fn: use ast::FnSigMazdak Farrokhzad-5/+5
2019-11-08ast::MethodSig -> ast::FnSigMazdak Farrokhzad-3/+3
2019-11-07move syntax::parse::lexer::comments -> syntax::util::commentsMazdak Farrokhzad-1/+1
2019-11-07syntax::parser::token -> syntax::tokenMazdak Farrokhzad-2/+2
2019-11-07syntax: use distinct FloatTy from rustc_target.Mazdak Farrokhzad-1/+0
2019-11-07parser: don't hardcode ABIs into grammarMazdak Farrokhzad-16/+10
2019-11-06Make doc comments cheaper with `AttrKind`.Nicholas Nethercote-2/+2
2019-11-06Remove unnecessary `Deref` impl for `Attribute`.Nicholas Nethercote-1/+1
2019-10-29save-analysis: Account for async desugaring in async fn return typesIgor Matuszewski-4/+23
2019-10-17save-analysis: Nest tables when processing impl itemsIgor Matuszewski-9/+12
2019-10-13Nest typeck tables when processing struct member typesIgor Matuszewski-5/+7
2019-10-13Use empty typeck tables when nesting on items without thoseIgor Matuszewski-8/+14
2019-10-05Rollup merge of #64708 - SimonSapin:option-deref, r=CentrilTyler Mandry-1/+0
2019-09-26Rename `ForeignItem.node` to `ForeignItem.kind`varkor-3/+3
2019-09-26Rename `Item.node` to `Item.kind`varkor-7/+7
2019-09-26Rename `Ty.node` to `Ty.kind`varkor-5/+5
2019-09-26Rename `TraitItem.node` to `TraitItem.kind`varkor-1/+1
2019-09-26Rename `ImplItem.node` to `ImplItem.kind`varkor-1/+1