about summary refs log tree commit diff
path: root/src/libsyntax/ext/cfg.rs
AgeCommit message (Collapse)AuthorLines
2013-09-01Modernized a few type names in rustc and syntaxMarvin Löbel-2/+2
2013-08-10std: Rename Iterator.transform -> .mapErick Tryzelaar-1/+1
cc #5898
2013-08-01syntax: implement cfg!() which evaluates to true/false where #[cfg] would ↵Huon Wilson-0/+45
keep/remove. Example: if cfg!(test) { calculation_to_run_only_when_testing(); }