about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
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-13librustc: Parse, but do not fully turn on, the `ref` keyword forPatrick Walton-4/+13
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-06AST refactoring: merge PatWild and PatWildMulti into one variant with a flag.Felix S. Klock II-3/+3
2014-08-05Fixes missing overflow lint for i64 #14269Falco Hirschenberger-2/+2
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/+9
2014-07-23Parser: Global single-segment paths should be represented as PatEnumJakub Wieczorek-1/+1
2014-07-20Implement new mod import sugarJakub Wieczorek-6/+10
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-16librustc: Implement the fully-expanded, UFCS form of explicit self.Patrick Walton-6/+24
2014-07-13macro in method position parsingJohn Clements-13/+42
2014-07-13refactor Method definition to make space for macrosJohn Clements-14/+2
2014-07-11use side table to store exported macrosJohn Clements-1/+2
2014-07-09ast: make Name its own typeCorey Richardson-8/+12
2014-07-09lexer: lex WS/COMMENT/SHEBANG rather than skippingCorey Richardson-3/+17
2014-07-09syntax: don't parse numeric literals in the lexerCorey Richardson-12/+7
2014-07-09syntax: don't process string/char/byte/binary litsCorey Richardson-6/+11
2014-07-09syntax: doc comments all the thingsCorey Richardson-224/+225
2014-07-08carry self ident forward through re-parsingJohn Clements-30/+42
2014-07-08remove outdated commentJohn Clements-12/+0
2014-07-08get rid of keyword idents, replace with namesJohn Clements-2/+2
2014-07-08preserve context in parsing of `self` varrefJohn Clements-9/+11
2014-07-08change if/else to matchJohn Clements-179/+197
2014-07-08auto merge of #15493 : brson/rust/tostr, r=pcwaltonbors-38/+38
2014-07-08std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`.Richo Healey-38/+38
2014-07-08Change DST syntax: type -> Sized?Nick Cameron-18/+44
2014-07-05auto merge of #15428 : phildawes/rust/master, r=huonwbors-2/+3
2014-07-04Parser: fix PatIdent span bugPhil Dawes-2/+3
2014-07-04librustc: Remove the `&LIFETIME EXPR` production from the language.Patrick Walton-1/+0
2014-07-03Fix ICE with nested macro_rules!-style macrosKevin Ballard-2/+2
2014-07-03Simplify PatIdent to contain an Ident rather than a PathJohn Clements-9/+14
2014-06-25Register new snapshotsAlex Crichton-1/+5
2014-06-24Make parse_expr_res publicKeegan McAllister-1/+1
2014-06-24auto merge of #14952 : alexcrichton/rust/const-unsafe-pointers, r=brsonbors-1/+14
2014-06-23libsyntax: Disallow struct literals after `if`, `while`, `match`, andPatrick Walton-14/+16
2014-06-22libsyntax: don't allow enum structs with no fieldsBenjamin Herr-0/+5
2014-06-21auto merge of #15062 : pcwalton/rust/trailing-plus, r=brsonbors-0/+6
2014-06-20libsyntax: Stop parsing `+` with no bounds after it.Patrick Walton-0/+6
2014-06-20syntax: Parse GT tokens from `>=` and `>>=`Alex Crichton-1/+13
2014-06-17Add br##"xx"## raw byte string literals.Simon Sapin-0/+1
2014-06-17Add a b"xx" byte string literal of type &'static [u8].Simon Sapin-1/+2