about summary refs log tree commit diff
path: root/src/libsyntax/print
AgeCommit message (Expand)AuthorLines
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-8/+8
2015-01-03sed -i -s 's/\bmod,/self,/g' **/*.rsJorge Aparicio-5/+5
2015-01-02Merge remote-tracking branch 'origin/master' into rollupAlex Crichton-1/+1
2015-01-02Make type in ast::Local optionalSeo Sanghyeon-6/+4
2015-01-02Accept `self` in place of `mod` in use itemsNick Cameron-1/+1
2014-12-30Fallout from stabilizationAaron Turon-3/+4
2014-12-29rollup merge of #20194: nick29581/dst-syntaxAlex Crichton-13/+18
2014-12-30Remove ExprSlice by hacking the compilerNick Cameron-19/+1
2014-12-30Add hypothetical support for ranges with only an upper boundNick Cameron-1/+3
2014-12-29Slash the ast::Stmt type from 104 to 24 bytes.Huon Wilson-1/+1
2014-12-26Changes to RustDocNick Cameron-7/+12
2014-12-26Accept `?Sized` as well as `Sized?`Nick Cameron-11/+11
2014-12-24Add syntax for rangesNick Cameron-0/+7
2014-12-22rollup merge of #20124: klutzy/pprust-asmAlex Crichton-5/+23
2014-12-21Fallout of std::str stabilizationAlex Crichton-131/+134
2014-12-22pprust: Fix asm optionsklutzy-5/+23
2014-12-21rollup merge of #20057: nick29581/array-syntaxAlex Crichton-3/+2
2014-12-20Add support for multiple region bounds in where clausesJared Roesch-2/+9
2014-12-20Add parser support for generalized where clausesJared Roesch-2/+9
2014-12-20Allow use of `[_ ; n]` syntax for fixed length and repeating arrays.Nick Cameron-3/+2
2014-12-19libsyntax: use `#[deriving(Copy)]`Jorge Aparicio-17/+7
2014-12-18librustc: Always parse `macro!()`/`macro![]` as expressions if notPatrick Walton-13/+29
2014-12-17rollup merge of #19918: pnkfelix/ast-refactor-make-place-in-exprbox-an-optionAlex Crichton-1/+1
2014-12-17rollup merge of #19831: luqmana/deriving-whereAlex Crichton-0/+1
2014-12-16AST refactor: make the place in ExprBox an option.Felix S. Klock II-1/+1
2014-12-15Fix pretty printing of HRTB syntaxBrian Koropoff-0/+5
2014-12-14Parse `unsafe impl` but don't do anything particularly interesting with the r...Niko Matsakis-3/+7
2014-12-14Parse `unsafe trait` but do not do anything with it beyond parsing and integr...Niko Matsakis-3/+5
2014-12-14Rename FnStyle trait to Unsafety.Niko Matsakis-24/+24
2014-12-14Remove `proc` types/expressions from the parser, compiler, andNiko Matsakis-47/+2
2014-12-14libsyntax: Output where clauses in pretty printer for structs.Luqman Aden-0/+1
2014-12-13libsyntax: use unboxed closuresJorge Aparicio-12/+18
2014-12-12Add support for equality constraints on associated typesNick Cameron-2/+26
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-0/+14
2014-12-06libsyntax: remove unnecessary `to_string()` callsJorge Aparicio-3/+3
2014-12-06libsyntax: remove unnecessary `as_slice()` callsJorge Aparicio-1/+1
2014-12-01auto merge of #19405 : jfager/rust/de-match-pyramid, r=bstriebors-27/+16
2014-11-30syntax: Make `asm!` clobbers a proper vector.Kang Seonghoon-1/+5
2014-11-29Replace some verbose match statements with their `if let` equivalent.jfager-27/+16
2014-11-26rollup merge of #19326: huonw/safer-syntaxAlex Crichton-1/+1
2014-11-26Rote changes due to the fact that ast paths no longer carry this extraneous b...Niko Matsakis-20/+6
2014-11-26Fixup various places that were doing `&T+'a` and do `&(T+'a)`Niko Matsakis-1/+1
2014-11-26Implement the new parsing rules for types in the parser, modifying the AST ap...Niko Matsakis-8/+16
2014-11-26Make syntax::owned_slice a Box<[T]> wrapper.Huon Wilson-1/+1
2014-11-23rollup merge of #19215: aochagavia/prettyJakub Bukaj-21/+16
2014-11-23Remove type parameters from ExprField and ExprTupFieldAdolfo OchagavĂ­a-16/+2
2014-11-22Fix pretty printing unsafe match armsAdolfo OchagavĂ­a-21/+16
2014-11-21core: Convert Char::escape_default, escape_unicode to iteratorsBrian Anderson-1/+3
2014-11-20auto merge of #19113 : nikomatsakis/rust/unboxed-boxed-closure-unification, r...bors-43/+4
2014-11-19rollup merge of #19103: huonw/literal-suffixesJakub Bukaj-12/+22