about summary refs log tree commit diff
path: root/src/libsyntax/ext/format.rs
AgeCommit message (Expand)AuthorLines
2015-04-14Negative case of `len()` -> `is_empty()`Tamir Duberstein-1/+1
2015-04-12Use the ecx.call_site() span for generating refs to format_args! internalsRyan Prichard-19/+25
2015-04-11Propagate macro backtraces more often, improve formatting diagnosticsRyan Prichard-2/+6
2015-04-05Add comments suggested by NikoPhil Dawes-11/+0
2015-04-05Work towards a non-panicing parser (libsyntax)Phil Dawes-3/+14
2015-03-23Fallout in stdlib, rustdoc, rustc, etc. For most maps, converted uses ofNiko Matsakis-1/+1
2015-02-27Replace MacExpr / MacPat / MacItems with MacEagerKeegan McAllister-1/+1
2015-02-23int audit - libcore::fmtNick Cameron-2/+2
2015-02-20Remove remaining uses of `[]`. This time I tried to use deref coercions where...Niko Matsakis-10/+10
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-4/+4
2015-02-07Don't use std:: paths in syntax extensions when compiling a #![no_std] crateKeegan McAllister-5/+5
2015-02-06Update to last version, remove "[]" as much as possibleGuillaumeGomez-1/+1
2015-02-06Libsyntax has been updatedGuillaumeGomez-3/+4
2015-02-06Replace the get method by the deref one on InternedStringGuillaumeGomez-2/+3
2015-02-04remove all kind annotations from closuresJorge Aparicio-3/+3
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-2/+2
2015-01-30std: Stabilize the std::fmt moduleAlex Crichton-75/+61
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-1/+1
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-2/+2
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-2/+2
2015-01-17libsyntax: rename functions from uint to usizePaul Collier-6/+6
2015-01-17libsyntax: uint types to usizePaul Collier-4/+4
2015-01-10core: rm unused lifetime.Huon Wilson-6/+2
2015-01-07use slicing sugarJorge Aparicio-21/+21
2015-01-06rollup merge of #20481: seanmonstar/fmt-show-stringAlex Crichton-1/+1
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-1/+1
2015-01-07Replace full slice notation with index callsNick Cameron-13/+13
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-1/+1
2014-12-30Fallout from stabilizationAaron Turon-9/+7
2014-12-27syntax: change format_args! to produce fmt::Arguments instead of calling a fu...Eduard Burtescu-62/+23
2014-12-27syntax: use std::string::String unqualified in format.Eduard Burtescu-13/+12
2014-12-27syntax: turn the match-call generated by format_args inside-out.Eduard Burtescu-39/+41
2014-12-27syntax: format: put static arrays in their own blocks to avoid needing a wrap...Eduard Burtescu-40/+39
2014-12-27syntax: format: remove unused method_statics field.Eduard Burtescu-15/+4
2014-12-21Fallout of std::str stabilizationAlex Crichton-14/+13
2014-12-20add {:?} fmt syntaxSean McArthur-0/+1
2014-12-12Add support for equality constraints on associated typesNick Cameron-0/+1
2014-12-08core: make the public fmt API completely safe.Eduard Burtescu-25/+8
2014-11-26rollup merge of #19298: nikomatsakis/unboxed-closure-parse-the-plusAlex Crichton-1/+1
2014-11-26Rote changes due to the fact that ast paths no longer carry this extraneous b...Niko Matsakis-1/+1
2014-11-25Fallout from stabilizationAaron Turon-1/+1
2014-11-18std: Stabilize std::fmtAlex Crichton-20/+2
2014-11-17Fallout from deprecationAaron Turon-3/+3
2014-11-17Switch to purely namespaced enumsSteven Fackler-0/+4
2014-11-17Fix fallout from coercion removalNick Cameron-6/+5
2014-11-16Complete the removal of ty_nil, ast::LitNil, ast::TyBot and ast::TyUniqJakub Bukaj-1/+1
2014-11-06Fallout from collection conventionsAlexis Beingessner-4/+4
2014-11-02syntax: Use UFCS instead of `secret_*` fns in expansion of `format_args!`Jorge Aparicio-18/+19
2014-10-31DSTify HashJorge Aparicio-3/+3
2014-10-30collections: Enable IndexMut for some collectionsAlex Crichton-2/+2