about summary refs log tree commit diff
path: root/src/librustc_ast_lowering
AgeCommit message (Expand)AuthorLines
2020-03-06fix various typosMatthias Krüger-1/+1
2020-03-06Auto merge of #69586 - petrochenkov:unmerge, r=Centrilbors-14/+6
2020-03-01encode `;` stmt w/o expr as `StmtKind::Empty`Mazdak Farrokhzad-0/+1
2020-03-01ast: Unmerge structures for associated items and foreign itemsVadim Petrochenkov-14/+6
2020-03-01Rollup merge of #69580 - matthiaskrgr:map_clone, r=CentrilYuki Okushi-1/+1
2020-02-29Rename `syntax` to `rustc_ast` in source codeVadim Petrochenkov-20/+20
2020-02-29Make it build againVadim Petrochenkov-1/+1
2020-02-29use .copied() instead of .map(|x| *x) on iteratorsMatthias Krüger-1/+1
2020-02-28use is_empty() instead of len() == x to determine if structs are empty.Matthias Krüger-1/+1
2020-02-27don't use .into() to convert types into identical types.Matthias Krüger-4/+3
2020-02-24parse/ast: move `Defaultness` into variants.Mazdak Farrokhzad-26/+26
2020-02-24add `Span` to `ast::Defaultness::Default`.Mazdak Farrokhzad-8/+4
2020-02-22parse: allow `type Foo: Ord` syntactically.Mazdak Farrokhzad-10/+10
2020-02-18Remove "not yet implemented" warningDylan MacKenzie-9/+1
2020-02-18Rollup merge of #69194 - Centril:assoc-extern-fuse, r=petrochenkovMazdak Farrokhzad-50/+54
2020-02-17Rename `FunctionRetTy` to `FnRetTy`Yuki Okushi-15/+15
2020-02-15Record proc macro harness order for use during metadata deserializationAaron Hill-0/+2
2020-02-15parse extern constsMazdak Farrokhzad-0/+5
2020-02-15parse associated statics.Mazdak Farrokhzad-4/+9
2020-02-15ast/parser: fuse `static` & `const` grammars in all contexts.Mazdak Farrokhzad-1/+1
2020-02-15ast: make `= <expr>;` optional in free statics/consts.Mazdak Farrokhzad-18/+19
2020-02-15ast: normalize `ForeignItemKind::Ty` & `AssocItemKind::TyAlias`.Mazdak Farrokhzad-1/+1
2020-02-15ast: move Generics into AssocItemKindsMazdak Farrokhzad-27/+20
2020-02-15Auto merge of #67681 - matthewjasper:infer-regions-in-borrowck, r=nikomatsakisbors-25/+43
2020-02-14Address review commentsMatthew Jasper-15/+17
2020-02-15Rollup merge of #69128 - Centril:fix-69103, r=davidtwcoYuki Okushi-6/+11
2020-02-14Distinguish RPIT from other impl traitMatthew Jasper-20/+36
2020-02-13fix extra subslice loweringMazdak Farrokhzad-6/+11
2020-02-13IsAsync -> enum Async { Yes { span: Span, .. }, No }Mazdak Farrokhzad-16/+13
2020-02-13Constness -> enum Const { Yes(Span), No }Mazdak Farrokhzad-8/+24
2020-02-06Rollup merge of #68524 - jonas-schievink:generator-resume-arguments, r=ZoxcDylan DPC-2/+2
2020-02-05lowering: add recursion_limit = 256Mazdak Farrokhzad-0/+1
2020-02-05parser: merge `fn` grammars wrt. bodies & headersMazdak Farrokhzad-45/+30
2020-02-04Update error message with too many parametersJonas Schievink-1/+1
2020-02-02Allow 0 or 1 explicit generator parametersJonas Schievink-2/+2
2020-02-01syntax::print -> new crate rustc_ast_prettyMazdak Farrokhzad-1/+2
2020-02-011. move node_id to syntaxMazdak Farrokhzad-5/+5
2020-01-26updatecomet-1/+1
2020-01-21Rollup merge of #68416 - Centril:lowering-cleanup-hofs, r=pietroalbiniMazdak Farrokhzad-12/+3
2020-01-21Rollup merge of #68140 - ecstatic-morse:const-trait-bound-opt-out, r=oli-obkMazdak Farrokhzad-10/+19
2020-01-21lowering: cleanup some hofsMazdak Farrokhzad-12/+3
2020-01-21Add comment explaining `MaybeConstMaybe` loweringDylan MacKenzie-0/+5
2020-01-20Parse `?const ?Trait`Dylan MacKenzie-2/+7
2020-01-20Add `MaybeConst` variant to `{ast,hir}::TraitBoundModifier`Dylan MacKenzie-5/+3
2020-01-19Add `constness` field to `hir::ItemKind::Impl`Dylan MacKenzie-1/+2
2020-01-19Add `constness` field to `ast::ItemKind::Impl`Dylan MacKenzie-3/+3
2020-01-18remove rustc_error_codes deps except in rustc_driverMazdak Farrokhzad-5/+0
2020-01-17Use named fields for `hir::ItemKind::Impl`Dylan MacKenzie-7/+7
2020-01-17Use named fields for `ast::ItemKind::Impl`Dylan MacKenzie-10/+11
2020-01-16don't clone types that are copyMatthias Krüger-3/+3