about summary refs log tree commit diff
path: root/src/libsyntax/parse
AgeCommit message (Expand)AuthorLines
2014-08-31auto merge of #16809 : nick29581/rust/dst-bug-3, r=alexcrichtonbors-13/+6
2014-08-30rollup merge of #16839 : treeman/issue-15358Alex Crichton-1/+1
2014-08-29Add support for labeled while loops.Pythoner6-4/+7
2014-08-29Tweak error message for use of a keyword in ident position.Jonas Hietala-1/+1
2014-08-28Forbid ~str and ~[]Nick Cameron-13/+6
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-113/+71
2014-08-27auto merge of #16689 : wickerwaka/rust/crate-as, r=pcwaltonbors-2/+12
2014-08-26Rebasing changesNick Cameron-14/+17
2014-08-26DST coercions and DST structsNick Cameron-54/+27
2014-08-25auto merge of #16699 : treeman/rust/issue-8492, r=alexcrichtonbors-11/+11
2014-08-24auto merge of #16646 : P1start/rust/trailing-commas, r=alexcrichtonbors-18/+25
2014-08-24Adjust the error messages to match the pattern "expected foo, found bar"Jonas Hietala-11/+11
2014-08-23extern crate foobar as foo;wickerwaka-2/+12
2014-08-23Add support for trailing commas in more placesP1start-18/+25
2014-08-21syntax: Fix complexity of string parsing. Closes #16624.Brian Anderson-5/+16
2014-08-18libsyntax: Remove the `use foo = bar` syntax from the language in favorPatrick Walton-3/+9
2014-08-16librustc: Forbid external crates, imports, and/or items from beingPatrick Walton-45/+46
2014-08-15auto merge of #16424 : pcwalton/rust/where-clauses, r=nikomatsakisbors-34/+107
2014-08-14librustc: Implement simple `where` clauses.Patrick Walton-34/+107
2014-08-14auto merge of #16468 : pcwalton/rust/as-renaming-import, r=alexcrichtonbors-2/+6
2014-08-14libsyntax: Accept `use foo as bar;` in lieu of `use bar as foo;`Patrick Walton-2/+6
2014-08-14librustc: Stop assuming that implementations and traits only containPatrick Walton-16/+24
2014-08-14librustc: Tie up loose ends in unboxed closures.Patrick Walton-71/+96
2014-08-14auto merge of #15929 : pcwalton/rust/by-ref-closures, r=alexcrichtonbors-4/+13
2014-08-13librustc: Parse, but do not fully turn on, the `ref` keyword forPatrick Walton-4/+13
2014-08-13quote_expr macro: embed Ident using special encoding that preserves hygiene.Felix S. Klock II-0/+174
2014-08-12libsyntax: Don't strip types and lifetimes from single-segment paths inPatrick Walton-1/+10
2014-08-07Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`,Niko Matsakis-29/+62
2014-08-07auto merge of #16306 : pnkfelix/rust/fsk-ast-refactor-PatWild, r=alexcrichtonbors-3/+3
2014-08-06auto merge of #16291 : nham/rust/byte_literals, r=alexcrichtonbors-2/+2
2014-08-06AST refactoring: merge PatWild and PatWildMulti into one variant with a flag.Felix S. Klock II-3/+3
2014-08-06Use byte literals in libsyntaxnham-2/+2
2014-08-05syntax: Handle \r\n in byte string literalsAlex Crichton-18/+38
2014-08-05Fixes missing overflow lint for i64 #14269Falco Hirschenberger-39/+22
2014-08-01Fix misspelled comments.Joseph Crail-1/+1
2014-07-29syntax: add support for quoting armsErick Tryzelaar-25/+29
2014-07-25librustc: Disallow mutation and assignment in pattern guards, and modifyPatrick Walton-183/+208
2014-07-24librustc: Make bare functions implement the `FnMut` trait.Patrick Walton-1/+7
2014-07-24libsyntax: Remove `~self` and `mut ~self` from the language.Patrick Walton-6/+14
2014-07-23Parser: Global single-segment paths should be represented as PatEnumJakub Wieczorek-1/+1
2014-07-20auto merge of #15808 : jakub-/rust/use-mod, r=alexcrichtonbors-6/+10
2014-07-20Implement new mod import sugarJakub Wieczorek-6/+10
2014-07-20Correctly stringify! types and paths inside macrosPiotr Jawniak-3/+5
2014-07-18librustc: Implement unboxed closures with mutable receiversPatrick Walton-56/+63
2014-07-17librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language,Patrick Walton-1/+3
2014-07-17auto merge of #15706 : phi-gamma/rust/master, r=huonwbors-1/+1
2014-07-16librustc: Implement the fully-expanded, UFCS form of explicit self.Patrick Walton-6/+24
2014-07-16obsolete.rs: fix typo in messagePhilipp Gesang-1/+1
2014-07-15Deprecate `str::from_utf8_owned`Adolfo OchagavĂ­a-1/+1
2014-07-13auto merge of #15646 : jbclements/rust/method-macros, r=cmrbors-26/+43