about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
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
2014-11-26rollup merge of #19329: steveklabnik/doc_style_cleanup2Alex Crichton-13/+8
2014-11-26/*! -> //!Steve Klabnik-13/+8
2014-11-26Implement the new parsing rules for types in the parser, modifying the AST ap...Niko Matsakis-107/+85
2014-11-25Deprecate MaybeOwned[Vector] in favor of CowJorge Aparicio-2/+2
2014-11-23Remove type parameters from ExprField and ExprTupFieldAdolfo Ochagavía-17/+11
2014-11-23libsyntax: Forbid type parameters in tuple indicesAdolfo Ochagavía-16/+8
2014-11-20auto merge of #19113 : nikomatsakis/rust/unboxed-boxed-closure-unification, r...bors-18/+8
2014-11-19rollup merge of #19103: huonw/literal-suffixesJakub Bukaj-30/+92
2014-11-19Merge the ExprFnBlock and ExprUnboxedClosure into one ExprClosure with an opt...Niko Matsakis-18/+8
2014-11-20Switch numeric suffix parsing to use the new system.Huon Wilson-6/+19
2014-11-20Parse and store suffixes on literals.Huon Wilson-30/+79
2014-11-19Refactor QPath to take an ast::TraitRefNiko Matsakis-5/+5
2014-11-19Switch to an independent enum for `Lit*` subtokens.Huon Wilson-14/+14
2014-11-18auto merge of #19044 : murarth/rust/libsyntax-view-item, r=alexcrichtonbors-0/+8
2014-11-18Convert TyPolyTraitRef to accept arbitary bounds, so that things likeNiko Matsakis-3/+14
2014-11-17libsyntax: Add `parse_view_item` method to ParserMurarth-0/+8
2014-11-18rollup merge of #19020: Gankro/better-warnJakub Bukaj-1/+2
2014-11-18rollup merge of #19018: tomjakubowski/fix-issue-19003Jakub Bukaj-1/+9
2014-11-17Switch to purely namespaced enumsSteven Fackler-0/+3
2014-11-17slightly better deprecation message for fn syntaxAlexis Beingessner-1/+2
2014-11-16Disallow parsing of struct variants with 0 fieldsTom Jakubowski-1/+9
2014-11-16auto merge of #18994 : sfackler/rust/struct-variants-pt2, r=jakub-bors-4/+8
2014-11-16Complete the removal of ty_nil, ast::LitNil, ast::TyBot and ast::TyUniqJakub Bukaj-96/+60
2014-11-15Un-feature gate struct variantsSteven Fackler-4/+8
2014-11-14auto merge of #18840 : huonw/rust/tweaks, r=alexcrichtonbors-24/+40
2014-11-14auto merge of #18827 : bjz/rust/rfc369-numerics, r=alexcrichtonbors-0/+1