about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
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
2014-06-17Add a b'x' byte literal of type u8.Simon Sapin-1/+2
2014-06-16rustc: Improve span for error about using a method as a field.Kevin Butler-2/+3
2014-06-16rustc: Start accepting `*const T`Alex Crichton-1/+14
2014-06-15Register new snapshotsAlex Crichton-37/+4
2014-06-14rustc: Obsolete the `@` syntax entirelyAlex Crichton-2/+5
2014-06-13Fix all violations of stronger guarantees for mutable borrowsCameron Zwarich-55/+102
2014-06-13syntax: parse outer attributes in `quote_item!` calls.Huon Wilson-0/+5
2014-06-13libsyntax: Allow `+` to separate trait bounds from objects.Patrick Walton-51/+86
2014-06-13librustc: Fix the issue with labels shadowing variable names by makingPatrick Walton-1/+1
2014-06-13auto merge of #14831 : alexcrichton/rust/format-intl, r=brsonbors-4/+34
2014-06-11std: Remove i18n/l10n from format!Alex Crichton-4/+34
2014-06-11rustc: Remove ~[T] from the languageAlex Crichton-6/+7
2014-06-11rustc: Move the AST from @T to Gc<T>Alex Crichton-2/+2
2014-06-11syntax: Move the AST from @T to Gc<T>Alex Crichton-117/+124
2014-06-10Fix more misspelled comments and strings.Joseph Crail-1/+1
2014-06-09librustc: Implement sugar for the `FnMut` traitPatrick Walton-13/+71
2014-06-05Fallout from the libcollections movementAlex Crichton-1/+1
2014-05-30std: Rename {Eq,Ord} to Partial{Eq,Ord}Alex Crichton-2/+2
2014-05-30libsyntax: Fix snake_case errors.Kevin Butler-41/+37
2014-05-30auto merge of #14517 : lucy/rust/issue-14499, r=alexcrichtonbors-1/+1
2014-05-29auto merge of #14483 : ahmedcharles/rust/patbox, r=alexcrichtonbors-3/+3
2014-05-29syntax: Fix span on illegal ABI errorslucy-1/+1