about summary refs log tree commit diff
path: root/compiler/rustc_ast_passes/src
AgeCommit message (Expand)AuthorLines
2021-03-07Add help for `matches` for `if let` in arm guardEsteban Küber-1/+5
2021-03-07Add help suggesting `matches` to `let_chains` lintEsteban Küber-1/+5
2021-02-23Rollup merge of #82296 - spastorino:pubrules, r=nikomatsakisDylan DPC-0/+1
2021-02-19Support `pub` on `macro_rules`Vadim Petrochenkov-0/+1
2021-02-18ast: Keep expansion status for out-of-line module itemsVadim Petrochenkov-2/+4
2021-02-18ast: Stop using `Mod` in `Crate`Vadim Petrochenkov-4/+0
2021-02-03Auto merge of #81346 - hug-dev:nonsecure-call-abi, r=jonas-schievinkbors-0/+8
2021-02-02Add a new ABI to support cmse_nonsecure_callHugues de Valon-0/+8
2021-02-01Box the biggest ast::ItemKind variantsDániel Buga-18/+30
2021-01-14Use Option::map_or instead of `.map(..).unwrap_or(..)`LingMan-1/+1
2021-01-12Auto merge of #76580 - rokob:iss76011, r=estebankbors-1/+26
2021-01-10Auto merge of #79414 - sasurau4:feature/add-suggestion-for-pattern-in-fns-wit...bors-8/+17
2021-01-02reduce borrowing and (de)referencing around match patterns (clippy::match_ref...Matthias Krüger-3/+3
2021-01-01make `const_generics_defaults` use the unstable syntax mechanismRémy Rakic-14/+4
2021-01-01adjust const generics defaults FIXMEs to the new feature gateRémy Rakic-1/+1
2021-01-01first pass at default values for const genericsJulian Knodt-2/+16
2020-12-31Rollup merge of #80519 - max-heller:issue-80512-fix, r=varkorDylan DPC-25/+31
2020-12-30Take type defaults into account in suggestions to reorder generic parametersmax-heller-25/+31
2020-12-30Rollup merge of #80495 - jyn514:rename-empty, r=petrochenkovMara Bos-1/+1
2020-12-30Rename kw::Invalid -> kw::EmptyJoshua Nelson-1/+1
2020-12-29Use Option::map_or instead of open coding itLingMan-4/+2
2020-12-26stabilize min_const_genericsBastian Kauschke-20/+5
2020-12-21add suggest for PatternsInWithoutBodyDaiki Ihara-8/+17
2020-12-17Change the message for `if_let_guard` feature gateLeSeulArtichaut-1/+1
2020-12-10Rollup merge of #79851 - camelid:better-error-for-default-fn, r=davidtwcoTyler Mandry-1/+1
2020-12-09Accept arbitrary expressions in key-value attributes at parse timeVadim Petrochenkov-0/+4
2020-12-08Clarify the 'default is only allowed on...' errorCamelid-1/+1
2020-11-28Auto merge of #78296 - Aaron1011:fix/stmt-tokens, r=petrochenkovbors-0/+1
2020-11-27Bump recursion_limit in rustc_ast_passesAaron Hill-0/+1
2020-11-27Auto merge of #79266 - b-naber:gat_trait_path_parser, r=petrochenkovbors-1/+3
2020-11-25ast and parserb-naber-1/+3
2020-11-23Rename `optin_builtin_traits` to `auto_traits`Camelid-1/+1
2020-11-17Use `span_suggestion_verbose` instead of `span_suggestion` for `fn` with qual...ThePuzzlemaker-1/+1
2020-11-14Add underscore expressions for destructuring assignmentsFabian Zaiser-1/+5
2020-11-12Rollup merge of #78836 - fanzier:struct-and-slice-destructuring, r=petrochenkovMara Bos-0/+1
2020-11-11Implement destructuring assignment for structs and slicesFabian Zaiser-0/+1
2020-11-10Rollup merge of #78875 - petrochenkov:cleantarg, r=Mark-SimulacrumJonas Schievink-1/+1
2020-11-08Collapse all uses of `target.options.foo` into `target.foo`Vadim Petrochenkov-1/+1
2020-11-03rustc_ast: `visit_mac` -> `visit_mac_call`Vadim Petrochenkov-1/+1
2020-11-03rustc_ast: Do not panic by default when visiting macro callsVadim Petrochenkov-6/+2
2020-10-29Fix typosDániel Buga-1/+1
2020-10-16Lower inline const's AST to HIRSantiago Pastorino-1/+1
2020-10-16Add inline_const feature flagSantiago Pastorino-0/+1
2020-10-15Replace target.target with target and target.ptr_width with target.pointer_widthest31-1/+1
2020-09-22Suggest async {} for async || {}Andy Weiss-1/+26
2020-09-18use matches!() macro for simple if let conditionsMatthias Krüger-4/+1
2020-09-14Stabilize doc_alias featureGuillaume Gomez-1/+0
2020-09-10Attach `TokenStream` to `ast::Visibility`Aaron Hill-3/+3
2020-09-10Syntactically permit unsafety on modsDavid Tolnay-2/+8
2020-09-04Implementation of incompatible features errorAmjad Alsharafi-0/+34