about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
2015-01-03auto merge of #20154 : P1start/rust/qualified-assoc-type-generics, r=nikomats...bors-34/+10
2015-01-02Merge remote-tracking branch 'origin/master' into rollupAlex Crichton-0/+4
2015-01-02rollup merge of #20425: sanxiyn/opt-local-tyAlex Crichton-6/+2
2015-01-02std: Stabilize the prelude moduleAlex Crichton-1/+2
2015-01-02Make type in ast::Local optionalSeo Sanghyeon-6/+2
2015-01-02Accept `self` in place of `mod` in use itemsNick Cameron-0/+4
2015-01-02Fallout - change array syntax to use `;`Nick Cameron-2/+2
2015-01-02Accept ranges with only a maximum value: `..expr`Nick Cameron-4/+11
2015-01-02Disallow [_, ..n] syntax for fixed length arrays and repeating array construc...Nick Cameron-15/+2
2014-12-29rollup merge of #20266: nick29581/dxr-useAlex Crichton-3/+4
2014-12-29rollup merge of #20194: nick29581/dst-syntaxAlex Crichton-21/+74
2014-12-30Remove ExprSlice by hacking the compilerNick Cameron-4/+11
2014-12-30Add hypothetical support for ranges with only an upper boundNick Cameron-1/+1
2014-12-29Rebase fixes.Huon Wilson-3/+3
2014-12-29Slash the ast::Stmt type from 104 to 24 bytes.Huon Wilson-1/+1
2014-12-28Fix spans for `use` view statements and their treatment in save-analysisNick Cameron-3/+4
2014-12-26Accept `?Sized` as well as `Sized?`Nick Cameron-21/+74
2014-12-25Parse fully-qualified associated types in generics without whitespaceP1start-34/+10
2014-12-24Add syntax for rangesNick Cameron-8/+32
2014-12-22rollup merge of #20141: frewsxcv/rfc438Alex Crichton-1/+1
2014-12-22RFC 248? I think you meant RFC 438.Chris Morgan-1/+1
2014-12-21Fallout of std::str stabilizationAlex Crichton-74/+74
2014-12-21rollup merge of #20057: nick29581/array-syntaxAlex Crichton-1/+10
2014-12-21rollup merge of #20039: barosl/if-let-friendly-errorAlex Crichton-2/+2
2014-12-20Add support for multiple region bounds in where clausesJared Roesch-4/+3
2014-12-20Add parser support for generalized where clausesJared Roesch-49/+72
2014-12-20Allow use of `[_ ; n]` syntax for fixed length and repeating arrays.Nick Cameron-1/+10
2014-12-20Drop the Match prefix from the MatchSource variantsBarosl Lee-2/+2
2014-12-19libsyntax: use `#[deriving(Copy)]`Jorge Aparicio-3/+1
2014-12-18librustc: Always parse `macro!()`/`macro![]` as expressions if notPatrick Walton-43/+108
2014-12-16AST refactor: make the place in ExprBox an option.Felix S. Klock II-1/+4
2014-12-15auto merge of #19742 : vhbit/rust/copy-for-bitflags, r=alexcrichtonbors-1/+0
2014-12-14Parse `unsafe impl` but don't do anything particularly interesting with the r...Niko Matsakis-3/+19
2014-12-14Parse `unsafe trait` but do not do anything with it beyond parsing and integr...Niko Matsakis-3/+21
2014-12-14Rename FnStyle trait to Unsafety.Niko Matsakis-29/+19
2014-12-14Remove `proc` types/expressions from the parser, compiler, andNiko Matsakis-32/+19
2014-12-13libsyntax: use tuple indexingJorge Aparicio-2/+2
2014-12-13libsyntax: use unboxed closuresJorge Aparicio-58/+74
2014-12-13Add `Copy` to bitflags-generated structuresValerii Hiora-1/+0
2014-12-12Add support for equality constraints on associated typesNick Cameron-42/+135
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-0/+4
2014-12-05rollup merge of #19494: P1start/better-expectedCorey Richardson-68/+115
2014-12-05rollup merge of #19413: P1start/more-trailing-commasCorey Richardson-0/+5
2014-12-04Make the parser’s ‘expected <foo>, found <bar>’ errors more accurateP1start-68/+115
2014-12-02auto merge of #19427 : scialex/rust/doc-attr-macros, r=sfacklerbors-0/+6
2014-12-01auto merge of #19405 : jfager/rust/de-match-pyramid, r=bstriebors-44/+19
2014-11-30allow macro expansions in attributesAlexander Light-0/+6
2014-11-30Allow trailing commas in array patterns and attributesP1start-0/+5
2014-11-30Fix the ordering of `unsafe` and `extern` in methodsP1start-7/+8
2014-11-29Replace some verbose match statements with their `if let` equivalent.jfager-44/+19