about summary refs log tree commit diff
path: root/src/libsyntax/parse
AgeCommit message (Expand)AuthorLines
2014-11-30Fix the ordering of `unsafe` and `extern` in methodsP1start-7/+8
2014-11-30Adjust some error messages to start with a lowercase letter and not finish wi...P1start-2/+2
2014-11-29Replace some verbose match statements with their `if let` equivalent.jfager-44/+19
2014-11-29Fix rustc panic on second compile_inputMurarth-0/+6
2014-11-26rollup merge of #19329: steveklabnik/doc_style_cleanup2Alex Crichton-21/+12
2014-11-26/*! -> //!Steve Klabnik-21/+12
2014-11-26rollup merge of #19298: nikomatsakis/unboxed-closure-parse-the-plusAlex Crichton-108/+86
2014-11-26rollup merge of #19288: steveklabnik/doc_style_cleanupAlex Crichton-7/+5
2014-11-26Implement the new parsing rules for types in the parser, modifying the AST ap...Niko Matsakis-108/+86
2014-11-25/** -> ///Steve Klabnik-7/+5
2014-11-25Deprecate MaybeOwned[Vector] in favor of CowJorge Aparicio-6/+6
2014-11-23std: Add a new top-level thread_local moduleAlex Crichton-9/+4
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-21unicode: Rename is_XID_start to is_xid_start, is_XID_continue to is_xid_continueBrian Anderson-3/+3
2014-11-21unicode: Add stability attributes to u_charBrian Anderson-2/+2
2014-11-21core: Convert Char::escape_default, escape_unicode to iteratorsBrian Anderson-2/+2
2014-11-21Fix various deprecation warnings from char changesBrian Anderson-3/+3
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-218/+283
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-145/+99
2014-11-20Parse and store suffixes on literals.Huon Wilson-61/+179
2014-11-19Refactor QPath to take an ast::TraitRefNiko Matsakis-5/+5
2014-11-19Switch to an independent enum for `Lit*` subtokens.Huon Wilson-59/+52
2014-11-18auto merge of #19044 : murarth/rust/libsyntax-view-item, r=alexcrichtonbors-1/+34
2014-11-18Convert TyPolyTraitRef to accept arbitary bounds, so that things likeNiko Matsakis-3/+14
2014-11-17libsyntax: Add tests for `parse_view_item`Murarth-1/+26
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/+14
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-103/+66
2014-11-15Un-feature gate struct variantsSteven Fackler-4/+8
2014-11-14auto merge of #18840 : huonw/rust/tweaks, r=alexcrichtonbors-24/+47
2014-11-14auto merge of #18827 : bjz/rust/rfc369-numerics, r=alexcrichtonbors-1/+3
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-13Add error message specific to \<carriage return>.Huon Wilson-0/+7
2014-11-13Remove lots of numeric traits from the preludesBrendan Zabarauskas-0/+2
2014-11-13Move checked arithmetic operators into Int traitBrendan Zabarauskas-1/+1
2014-11-11libsyntax: Forbid type parameters in field expressions.Patrick Walton-1/+8
2014-11-11syntax: improve message for misused inner attributesLiigo Zhuang-0/+2
2014-11-07Purge the old `once_fns`, which are not coming backNiko Matsakis-30/+29
2014-11-07Update parser with `for` syntaxNiko Matsakis-136/+174
2014-11-07auto merge of #17830 : pczarn/rust/interp_tt, r=pnkfelixbors-70/+36
2014-11-07Add `ast::SequenceRepetition`Piotr Czarnecki-2/+9