about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
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
2014-11-13Use the correct span for out-of-range int literals.Huon Wilson-1/+2
2014-11-13Add more "help: ..."'s to the parser.Huon Wilson-23/+38
2014-11-13Remove lots of numeric traits from the preludesBrendan Zabarauskas-0/+1
2014-11-11libsyntax: Forbid type parameters in field expressions.Patrick Walton-1/+8
2014-11-07Update parser with `for` syntaxNiko Matsakis-136/+174
2014-11-07auto merge of #17830 : pczarn/rust/interp_tt, r=pnkfelixbors-68/+28
2014-11-07Add `ast::SequenceRepetition`Piotr Czarnecki-2/+9
2014-11-06Remove the unboxed closure `|:|` notation from types and trait references com...Niko Matsakis-50/+16
2014-11-06Support parenthesized paths `Foo(A,B) -> C` that expand to `Foo<(A,B),C>`. Th...Niko Matsakis-44/+54
2014-11-06Restructure parsing of paths, which is quite torturedNiko Matsakis-42/+108
2014-11-05Remove `Matcher`sPiotr Czarnecki-62/+2
2014-11-05Use `TokenTree`s in lhs of macrosPiotr Czarnecki-5/+18
2014-11-05Register snapshots.Eduard Burtescu-11/+0
2014-11-03rollup merge of #18562 : nick29581/dxr-1Alex Crichton-17/+3
2014-11-03rollup merge of #18506 : nikomatsakis/assoc-type-boundsAlex Crichton-7/+4
2014-11-03Restructure AST so that the associated type definition carriesNiko Matsakis-7/+4
2014-11-03Ignore whitespace tokens when re-computing spans in save_analysisNick Cameron-17/+3
2014-11-02Convert some notes to help messagesP1start-5/+14
2014-10-30rollup merge of #18430 : bjz/tokenAlex Crichton-207/+204
2014-10-30Add a message for when a `.` follows a macro invocationP1start-0/+10
2014-10-30Improve the error message for parenthesised box expressionsP1start-0/+14
2014-10-30Formatting fixesBrendan Zabarauskas-5/+13
2014-10-30Remove Token::get_close_delimiterBrendan Zabarauskas-47/+33
2014-10-30Use common variants for open and close delimitersBrendan Zabarauskas-160/+163
2014-10-29Rename fail! to panic!Steve Klabnik-2/+2
2014-10-28Move token-to-string functions into print::pprustBrendan Zabarauskas-1/+2
2014-10-28Use an enum rather than a bool in token::IdentBrendan Zabarauskas-6/+6
2014-10-28Convert some token functions into methodsBrendan Zabarauskas-109/+81