about summary refs log tree commit diff
path: root/src/libsyntax/parse
AgeCommit message (Expand)AuthorLines
2014-06-24auto merge of #14952 : alexcrichton/rust/const-unsafe-pointers, r=brsonbors-4/+17
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-18Handle CRLF properly in the lexerKevin Ballard-23/+140
2014-06-18Don't require mutable StringReader to emit lexer errorsKevin Ballard-42/+52
2014-06-18Fix spans for doc commentsKevin Ballard-3/+3
2014-06-18auto merge of #14880 : SimonSapin/rust/byte-literals, r=alexcrichtonbors-83/+213
2014-06-18Remove TraitStore from ty_traitNick Cameron-2/+6
2014-06-18Fix some violations of stronger guarantees for mutable borrows.Simon Sapin-9/+17
2014-06-17Refactor backslash-escape parsing to share similar code.Simon Sapin-151/+69
2014-06-17Add br##"xx"## raw byte string literals.Simon Sapin-3/+61
2014-06-17Add a b"xx" byte string literal of type &'static [u8].Simon Sapin-53/+125
2014-06-17Add a b'x' byte literal of type u8.Simon Sapin-4/+78
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-4/+17
2014-06-15Register new snapshotsAlex Crichton-44/+4
2014-06-14rustc: Obsolete the `@` syntax entirelyAlex Crichton-4/+18
2014-06-13Fix all violations of stronger guarantees for mutable borrowsCameron Zwarich-84/+158
2014-06-13syntax: parse outer attributes in `quote_item!` calls.Huon Wilson-2/+6
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-64/+80
2014-06-13auto merge of #14831 : alexcrichton/rust/format-intl, r=brsonbors-4/+41
2014-06-11std: Remove i18n/l10n from format!Alex Crichton-4/+41
2014-06-11rustc: Remove ~[T] from the languageAlex Crichton-6/+12
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-160/+173
2014-06-10Fix more misspelled comments and strings.Joseph Crail-2/+2
2014-06-09librustc: Implement sugar for the `FnMut` traitPatrick Walton-13/+71
2014-06-06auto merge of #14667 : aochagavia/rust/pr2, r=huonwbors-1/+1
2014-06-06Change to_str().to_string() to just to_str()Adolfo OchagavĂ­a-1/+1
2014-06-05Fallout from the libcollections movementAlex Crichton-1/+1
2014-06-04syntax: methodify the lexerCorey Richardson-1184/+1191
2014-06-03Add comments for the token tableCorey Richardson-0/+4
2014-06-03syntax: shuffle some allocation out of binop_to_strCorey Richardson-13/+13
2014-06-01std: Drop Total from Total{Eq,Ord}Alex Crichton-5/+5
2014-05-30std: Rename {Eq,Ord} to Partial{Eq,Ord}Alex Crichton-9/+9
2014-05-30libsyntax: Fix snake_case errors.Kevin Butler-47/+43
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
2014-05-28Parse macros in patternsKeegan McAllister-7/+20
2014-05-27Rename PatUniq to PatBox. Fixes part of #13910.Ahmed Charles-3/+3
2014-05-27auto merge of #14414 : richo/rust/features/nerf_unused_string_fns, r=alexcric...bors-105/+105
2014-05-27std: Rename strbuf operations to stringRicho Healey-104/+104
2014-05-27std: Remove String's to_ownedRicho Healey-1/+1
2014-05-26syntax: Add a source field to `Local` for tracking if it comes from `let`s or...Huon Wilson-1/+2
2014-05-25Allow $foo:block nonterminals in expression positionKevin Ballard-7/+11