about summary refs log tree commit diff
path: root/src/libsyntax_ext/compile_error.rs
AgeCommit message (Collapse)AuthorLines
2019-12-30Rename directories for some crates from `syntax_x` to `rustc_x`Vadim Petrochenkov-20/+0
`syntax_expand` -> `rustc_expand` `syntax_pos` -> `rustc_span` `syntax_ext` -> `rustc_builtin_macros`
2019-12-22Format the worldMark Rousskov-5/+6
2019-10-16move syntax::ext to new crate syntax_expandMazdak Farrokhzad-1/+1
2019-09-03use TokenStream rather than &[TokenTree] for built-in macrosAleksey Kladov-2/+2
That way, we don't loose the jointness info
2019-02-04libsyntax_ext => 2018Taiki Endo-3/+2
2018-12-30Improve error recovery for some built-in macrosVadim Petrochenkov-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-07-12Deny bare trait objects in src/libsyntax_extljedrz-1/+1
2017-07-25Stabilize the `compile_error_macro` featureAlex Crichton-10/+0
Stabilizes: * `compile_error!` as a macro defined by rustc Closes #40872
2017-06-19Add compile_error!Wesley Wiser-0/+40
Related to #40872