index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustc_expand
Age
Commit message (
Expand
)
Author
Lines
2020-05-03
Implement `confusable_idents` lint.
Charles Lew
-4
/
+5
2020-04-24
Avoid unused Option::map results
Josh Stone
-4
/
+4
2020-04-19
Dogfood more or_patterns in the compiler
Josh Stone
-2
/
+5
2020-04-18
Move `MapInPlace` to rustc_data_structures
Yuki Okushi
-2
/
+2
2020-04-14
Remove unused single_step flag
Mark Rousskov
-5
/
+1
2020-04-04
macro_rules: `NtLifetime` cannot start with an identifier
Vadim Petrochenkov
-1
/
+1
2020-03-30
Use if let instead of match when only matching a single variant (clippy::sing...
Matthias Krüger
-13
/
+12
2020-03-28
Auto merge of #70261 - Centril:angle-args-partition, r=varkor
bors
-1
/
+2
2020-03-27
parse: move constraint/arg restriction to ast_validation.
Mazdak Farrokhzad
-1
/
+2
2020-03-27
suggest semi on expr mac!() good as stmt mac!().
Mazdak Farrokhzad
-1
/
+18
2020-03-25
Rename `def_span` to `guess_head_span`
Esteban Küber
-1
/
+1
2020-03-24
expand: address review comments
Mazdak Farrokhzad
-18
/
+11
2020-03-24
expand: add recovery for parse_nt
Mazdak Farrokhzad
-16
/
+19
2020-03-24
expand: nix unused method
Mazdak Farrokhzad
-4
/
+1
2020-03-24
defatalize `compile_declarative_macro`
Mazdak Farrokhzad
-16
/
+32
2020-03-24
mbe::transcribe: defatalize errors.
Mazdak Farrokhzad
-29
/
+22
2020-03-24
remove ExtCxt::struct_span_warn
Mazdak Farrokhzad
-3
/
+2
2020-03-24
defatalize ProcMacroDerive::expand
Mazdak Farrokhzad
-20
/
+8
2020-03-24
defatalize AttrProcMacro::expand
Mazdak Farrokhzad
-18
/
+16
2020-03-24
defatalize BangProcMacro::expand
Mazdak Farrokhzad
-19
/
+27
2020-03-24
generic_extension: defatalize Error case
Mazdak Farrokhzad
-1
/
+5
2020-03-24
nix remaining rustc_expand::panictry! uses.
Mazdak Farrokhzad
-20
/
+1
2020-03-24
nix panictry! in ParserAnyMacro::make
Mazdak Farrokhzad
-32
/
+47
2020-03-24
rustc_expand::base: nix panictry! uses
Mazdak Farrokhzad
-4
/
+16
2020-03-22
parse: nix new_sub_parser_from_file
Mazdak Farrokhzad
-2
/
+2
2020-03-21
parse: nix unused `root_module_name`.
Mazdak Farrokhzad
-5
/
+2
2020-03-21
Rollup merge of #69497 - Zoxc:ast-fragment-error, r=petrochenkov
Dylan DPC
-4
/
+14
2020-03-20
can_begin_literal_maybe_minus: `true` on `"-"? lit` NTs.
Mazdak Farrokhzad
-1
/
+1
2020-03-19
Don't unwind when hitting the macro expansion recursion limit
John Kåre Alsaker
-4
/
+14
2020-03-18
fix pre-expansion linting infra
Mazdak Farrokhzad
-3
/
+18
2020-03-18
tweak outline module parsing spans
Mazdak Farrokhzad
-24
/
+25
2020-03-18
parser/expand: minor cleanup
Mazdak Farrokhzad
-2
/
+2
2020-03-18
{rustc_parse -> rustc_expand}::config
Mazdak Farrokhzad
-2
/
+536
2020-03-18
{rustc_parse::parser -> rustc_expand}::module
Mazdak Farrokhzad
-4
/
+308
2020-03-18
move Directory -> parser::module
Mazdak Farrokhzad
-3
/
+5
2020-03-18
outline modules: parse -> expand.
Mazdak Farrokhzad
-56
/
+58
2020-03-18
expand: use push_directory
Mazdak Farrokhzad
-7
/
+7
2020-03-17
Rollup merge of #68746 - matthewjasper:metahygiene, r=petrochenkov
Mazdak Farrokhzad
-24
/
+33
2020-03-17
Rollup merge of #69870 - petrochenkov:cfgacc, r=matthewjasper
Mazdak Farrokhzad
-60
/
+124
2020-03-16
Make macro metavars respect (non-)hygiene
Matthew Jasper
-24
/
+33
2020-03-16
Other `legacy` -> `macro_rules`
Vadim Petrochenkov
-6
/
+6
2020-03-16
ast/hir: `MacroDef::legacy` -> `MacroDef::macro_rules`
Vadim Petrochenkov
-5
/
+5
2020-03-12
ast: `Mac`/`Macro` -> `MacCall`
Vadim Petrochenkov
-49
/
+60
2020-03-10
Store `TokenStream` in `rmeta::MacroDef`.
Mazdak Farrokhzad
-3
/
+3
2020-03-10
builtin_macros: Add attribute macro `#[cfg_accessible(path)]`
Vadim Petrochenkov
-0
/
+1
2020-03-10
expand: Implement support for retrying macro expansions
Vadim Petrochenkov
-51
/
+121
2020-03-09
expand/builtin_macros: Minor cleanup
Vadim Petrochenkov
-10
/
+3
2020-03-09
Address review comments
Vadim Petrochenkov
-4
/
+1
2020-03-09
rustc_parse: Use `Token::ident` where possible
Vadim Petrochenkov
-12
/
+6
2020-03-07
Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkov
Mazdak Farrokhzad
-1
/
+1
[next]