about summary refs log tree commit diff
path: root/src/librustc_builtin_macros
AgeCommit message (Expand)AuthorLines
2020-05-04fix typo in function nameAndy Russell-3/+3
2020-05-04Rollup merge of #71773 - tshepang:links, r=davidtwcoDylan DPC-2/+2
2020-05-02fix rustdoc warningsTshepang Lekhonkhobe-1/+3
2020-05-01doc: misc rustdoc thingsTshepang Lekhonkhobe-2/+4
2020-04-19Dogfood more or_patterns in the compilerJosh Stone-19/+13
2020-04-18Move `MapInPlace` to rustc_data_structuresYuki Okushi-1/+1
2020-04-16don't clone types that are copy (clippy::clone_on_copy)Matthias Krüger-1/+1
2020-03-30Use if let instead of match when only matching a single variant (clippy::sing...Matthias Krüger-8/+4
2020-03-26Rename asm! to llvm_asm!Amanieu d'Antras-13/+14
2020-03-25Rename `def_span` to `guess_head_span`Esteban Küber-5/+5
2020-03-24defatalize expand_test_or_benchMazdak Farrokhzad-8/+8
2020-03-24defatalize get_test_runnerMazdak Farrokhzad-10/+10
2020-03-24nix remaining rustc_expand::panictry! uses.Mazdak Farrokhzad-15/+18
2020-03-23Rollup merge of #70269 - matthiaskrgr:clippy_closures, r=Dylan-DPCMazdak Farrokhzad-2/+2
2020-03-23Rollup merge of #70248 - Centril:unroot, r=petrochenkovMazdak Farrokhzad-2/+2
2020-03-22Rollup merge of #70266 - petrochenkov:prochead, r=varkorDylan DPC-5/+8
2020-03-22remove redundant closures (clippy::redundant_closure)Matthias Krüger-2/+2
2020-03-22proc_macro_harness: Use item header spans for errorsVadim Petrochenkov-5/+8
2020-03-22parse: nix new_sub_parser_from_fileMazdak Farrokhzad-2/+2
2020-03-21parse: nix unused `root_module_name`.Mazdak Farrokhzad-1/+1
2020-03-21use let instead of match for matches with single bindings (clippy::match_sing...Matthias Krüger-2/+3
2020-03-21Rollup merge of #70187 - matthiaskrgr:cl2ppy, r=Mark-SimulacrumMazdak Farrokhzad-9/+8
2020-03-20remove redundant returns (clippy::needless_return)Matthias Krüger-9/+8
2020-03-20expand_include: set `.directory` to dir of included file.Mazdak Farrokhzad-1/+12
2020-03-18fix pre-expansion linting infraMazdak Farrokhzad-3/+3
2020-03-18outline modules: parse -> expand.Mazdak Farrokhzad-3/+2
2020-03-17Rollup merge of #69870 - petrochenkov:cfgacc, r=matthewjasperMazdak Farrokhzad-4/+60
2020-03-12ast: `Mac`/`Macro` -> `MacCall`Vadim Petrochenkov-7/+7
2020-03-10builtin_macros: Add attribute macro `#[cfg_accessible(path)]`Vadim Petrochenkov-0/+56
2020-03-10expand: Implement support for retrying macro expansionsVadim Petrochenkov-3/+3
2020-03-09expand/builtin_macros: Minor cleanupVadim Petrochenkov-1/+1
2020-03-09rustc_parse: Use `Token::ident` where possibleVadim Petrochenkov-33/+32
2020-03-08Rollup merge of #69548 - LeSeulArtichaut:assert-errors, r=petrochenkovMazdak Farrokhzad-8/+4
2020-03-07Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkovMazdak Farrokhzad-1/+1
2020-03-06Turn trailing tokens in `assert!()` into hard errorsLeSeulArtichaut-8/+4
2020-03-06Don't redundantly repeat field names (clippy::redundant_field_names)Matthias Krüger-1/+1
2020-03-06fix various typosMatthias Krüger-1/+1
2020-03-05Use more efficient &&str to String conversion (clippy::inefficient_to_string)Matthias Krüger-1/+1
2020-03-05Use righthand '&' instead of lefthand "ref". (clippy::toplevel_ref_arg)Matthias Krüger-9/+9
2020-03-02use values() or keys() respectively when iterating only over keys or values o...Matthias Krüger-1/+1
2020-03-01Rollup merge of #69580 - matthiaskrgr:map_clone, r=CentrilYuki Okushi-1/+1
2020-03-01Rollup merge of #69579 - petrochenkov:noprevspan, r=CentrilYuki Okushi-7/+7
2020-03-01Auto merge of #69592 - petrochenkov:nosyntax, r=Centrilbors-94/+96
2020-02-29Rename `syntax` to `rustc_ast` in source codeVadim Petrochenkov-94/+96
2020-02-29Rollup merge of #69572 - matthiaskrgr:try_err_and_iter_on_ref, r=CentrilDylan DPC-1/+1
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-29parser: `prev_span` -> `prev_token.span`Vadim Petrochenkov-7/+7
2020-02-29use .iter() instead of .into_iter() on references.Matthias Krüger-1/+1
2020-02-29Rollup merge of #69551 - matthiaskrgr:len_zero, r=Mark-SimulacrumDylan DPC-2/+2