about summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
AgeCommit message (Expand)AuthorLines
2015-01-05Change `&` pat to only work with &T, and `&mut` with &mut T.Huon Wilson-1/+1
2015-01-05auto merge of #20285 : FlaPer87/rust/oibit-send-and-friends, r=nikomatsakisbors-0/+19
2015-01-04Add syntax for negative implementations of traitsFlavio Percoco-0/+19
2015-01-04Merge pull request #20452 from brson/rustupbors-1/+1
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-104/+104
2015-01-02Merge remote-tracking branch 'erickt/rustup'Brian Anderson-1/+1
2015-01-02rollup merge of #20425: sanxiyn/opt-local-tyAlex Crichton-1/+1
2015-01-02Make type in ast::Local optionalSeo Sanghyeon-1/+1
2015-01-01std: Enforce Unicode in fmt::WriterAlex Crichton-1/+2
2014-12-30Add a FIXME relating to using `ast::Name`Niko Matsakis-1/+1
2014-12-29rollup merge of #20194: nick29581/dst-syntaxAlex Crichton-5/+10
2014-12-30Remove ExprSlice by hacking the compilerNick Cameron-1/+0
2014-12-30Add hypothetical support for ranges with only an upper boundNick Cameron-1/+1
2014-12-29syntax: whitespace cleanupErick Tryzelaar-1/+1
2014-12-29Slash the ast::Stmt type from 104 to 24 bytes.Huon Wilson-1/+1
2014-12-26Accept `?Sized` as well as `Sized?`Nick Cameron-5/+10
2014-12-24Add syntax for rangesNick Cameron-0/+1
2014-12-22rollup merge of #20033: alexcrichton/deprecate-serialiseAlex Crichton-103/+106
2014-12-22serialize: Fully deprecate the libraryAlex Crichton-103/+106
2014-12-21Fallout of std::str stabilizationAlex Crichton-1/+1
2014-12-21rollup merge of #20039: barosl/if-let-friendly-errorAlex Crichton-4/+3
2014-12-20Add support for multiple region bounds in where clausesJared Roesch-3/+1
2014-12-20Add parser support for generalized where clausesJared Roesch-2/+11
2014-12-20Drop the Match prefix from the MatchSource variantsBarosl Lee-4/+3
2014-12-20Print a friendly error for the if-let construct without an else blockBarosl Lee-1/+1
2014-12-19libsyntax: use `#[deriving(Copy)]`Jorge Aparicio-90/+30
2014-12-18librustc: Always parse `macro!()`/`macro![]` as expressions if notPatrick Walton-2/+15
2014-12-16AST refactor: make the place in ExprBox an option.Felix S. Klock II-1/+1
2014-12-14Parse `unsafe impl` but don't do anything particularly interesting with the r...Niko Matsakis-1/+2
2014-12-14Parse `unsafe trait` but do not do anything with it beyond parsing and integr...Niko Matsakis-1/+2
2014-12-14Rename FnStyle trait to Unsafety.Niko Matsakis-17/+12
2014-12-14Remove `proc` types/expressions from the parser, compiler, andNiko Matsakis-3/+0
2014-12-12Add support for equality constraints on associated typesNick Cameron-2/+41
2014-12-11Register new snapshotsAlex Crichton-1/+0
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-1/+64
2014-11-30syntax: Make `asm!` clobbers a proper vector.Kang Seonghoon-1/+1
2014-11-26rollup merge of #19329: steveklabnik/doc_style_cleanup2Alex Crichton-4/+2
2014-11-26/*! -> //!Steve Klabnik-4/+2
2014-11-26Implement the new parsing rules for types in the parser, modifying the AST ap...Niko Matsakis-1/+3
2014-11-23Remove type parameters from ExprField and ExprTupFieldAdolfo OchagavĂ­a-2/+2
2014-11-20auto merge of #19113 : nikomatsakis/rust/unboxed-boxed-closure-unification, r...bors-2/+1
2014-11-19rollup merge of #19103: huonw/literal-suffixesJakub Bukaj-1/+1
2014-11-19rollup merge of #19040: alexcrichton/issue-18904Jakub Bukaj-1/+1
2014-11-19Merge the ExprFnBlock and ExprUnboxedClosure into one ExprClosure with an opt...Niko Matsakis-2/+1
2014-11-20Parse and store suffixes on literals.Huon Wilson-1/+1
2014-11-19Refactor QPath to take an ast::TraitRefNiko Matsakis-3/+3
2014-11-18std: Stabilize std::fmtAlex Crichton-1/+1
2014-11-19Switch to an independent enum for `Lit*` subtokens.Huon Wilson-1/+1
2014-11-18Convert TyPolyTraitRef to accept arbitary bounds, so that things likeNiko Matsakis-1/+1
2014-11-17Switch to purely namespaced enumsSteven Fackler-0/+49