about summary refs log tree commit diff
path: root/src/libsyntax/ext/concat.rs
AgeCommit message (Expand)AuthorLines
2015-02-27Replace MacExpr / MacPat / MacItems with MacEagerKeegan McAllister-1/+1
2015-02-20Remove remaining uses of `[]`. This time I tried to use deref coercions where...Niko Matsakis-3/+3
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-1/+1
2015-02-06Update to last version, remove "[]" as much as possibleGuillaumeGomez-1/+1
2015-02-06Libsyntax has been updatedGuillaumeGomez-2/+1
2015-02-06Replace the get method by the deref one on InternedStringGuillaumeGomez-1/+2
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-1/+1
2015-01-07use slicing sugarJorge Aparicio-4/+4
2015-01-07Replace full slice notation with index callsNick Cameron-4/+4
2014-12-21Fallout of std::str stabilizationAlex Crichton-4/+4
2014-11-16Complete the removal of ty_nil, ast::LitNil, ast::TyBot and ast::TyUniqJakub Bukaj-1/+0
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-1/+1
2014-09-16Fallout from renamingAaron Turon-1/+1
2014-09-14syntax: fix fallout from using ptr::P.Eduard Burtescu-1/+1
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-1/+1
2014-08-05Fixes missing overflow lint for i64 #14269Falco Hirschenberger-3/+6
2014-06-17Add a b'x' byte literal of type u8.Simon Sapin-0/+1
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-2/+2
2014-05-22libstd: Remove all uses of `~str` from `libstd`Patrick Walton-1/+1
2014-05-22libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`.Patrick Walton-3/+3
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-1/+2
2014-05-02syntax: store char literals/tokens as `char`s rather than u32s.Huon Wilson-2/+1
2014-04-16syntax: unify all MacResult's into a single trait.Huon Wilson-3/+3
2014-04-10libstd: Implement `StrBuf`, a new string buffer type like `Vec`, andPatrick Walton-4/+7
2014-03-02Expand string literals and exprs inside of macrosSteven Fackler-1/+0
2014-02-18Avoid returning original macro if expansion fails.Douglas Young-1/+1
2014-02-02libsyntax: Make float literals not use `@str`Patrick Walton-4/+3
2014-02-02libsyntax: De-`@str` literal strings in the ASTPatrick Walton-3/+6
2014-01-18syntax::ext: replace span_fatal with span_err in many places.Huon Wilson-1/+4
2014-01-09libsyntax: Renamed types, traits and enum variants to CamelCase.Eduard Burtescu-11/+9
2013-12-29Start passing around &mut ExtCtxtSteven Fackler-1/+1
2013-12-28Stop using @ExtCtxtSteven Fackler-1/+1
2013-11-28Register new snapshotsAlex Crichton-1/+1
2013-10-31Implement a concat!() format extensionAlex Crichton-0/+58