about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
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-4/+4
2014-05-27std: Rename strbuf operations to stringRicho Healey-3/+3
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
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-10/+10
2014-05-23Improve error message for lifetimes after type params.Kevin Butler-1/+13
2014-05-23auto merge of #14360 : alexcrichton/rust/remove-deprecated, r=kballardbors-127/+13
2014-05-23syntax: Clean out obsolete syntax parsingAlex Crichton-127/+13
2014-05-22libcore: Remove all uses of `~str` from `libcore`.Patrick Walton-2/+4
2014-05-22libstd: Remove all uses of `~str` from `libstd`Patrick Walton-3/+3
2014-05-22libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`.Patrick Walton-51/+76
2014-05-20syntax: Parse global paths in patternsAlex Crichton-1/+1
2014-05-17syntax: Tighten search paths for inner modulesAlex Crichton-6/+44
2014-05-13syntax: Fix parsing << with closure typesAlex Crichton-6/+54
2014-05-13Touch up and rebase previous commitsAlex Crichton-3/+0
2014-05-12Cleanup some ugly variable names, now that we have `let`-hygiene.Paul Stansifer-14/+14
2014-05-12Add some long-overdue documentation on the INTERPOLATED helper macros.Paul Stansifer-1/+6
2014-05-09Register new snapshotsAlex Crichton-6/+0
2014-05-08libsyntax: Remove uses of `~str` from libsyntax, and fix falloutPatrick Walton-7/+13
2014-05-07auto merge of #14005 : alexcrichton/rust/extern-unsafe, r=pcwaltonbors-14/+24
2014-05-07auto merge of #13958 : pcwalton/rust/detilde, r=pcwaltonbors-5/+21
2014-05-07auto merge of #13914 : alexcrichton/rust/pile-o-rustdoc-fixes, r=brsonbors-6/+2
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-5/+21
2014-05-06rustc: Enable writing "unsafe extern fn() {}"Alex Crichton-14/+24
2014-05-04auto merge of #13908 : pcwalton/rust/box-pattern, r=alexcrichtonbors-0/+13
2014-05-04auto merge of #13898 : nikomatsakis/rust/type-bounds-b, r=acrichtobors-4/+3
2014-05-03Temporary patch to accept arbitrary lifetimes (behind feature gate) in bound ...Niko Matsakis-4/+3
2014-05-03syntax: Fix duplicate attributes on module filesAlex Crichton-6/+2
2014-05-02Replace most ~exprs with 'box'. #11779Brian Anderson-1/+1
2014-05-02libsyntax: Add `box PAT` to the pattern grammar. RFC #14.Patrick Walton-0/+13
2014-04-30librustc: Remove `~"string"` and `&"string"` from the languagePatrick Walton-22/+5
2014-04-28auto merge of #13791 : lifthrasiir/rust/mod-inner-span, r=huonwbors-5/+12
2014-04-27syntax: `Mod` records the span for inner contents.Kang Seonghoon-5/+12
2014-04-26syntax: ViewItemUse no longer contains multiple view paths.Kang Seonghoon-3/+3
2014-04-24auto merge of #13713 : edwardw/rust/methodcall-span, r=alexcrichtonbors-2/+8
2014-04-23Allow attributes on match armsSteven Fackler-1/+7
2014-04-24Calibrate span for method call error messagesEdward Wang-2/+8
2014-04-23Support unsized types with the `type` keywordNick Cameron-3/+24
2014-04-23Add a span to ast::TyParamNick Cameron-1/+3
2014-04-21auto merge of #13435 : edwardw/rust/span, r=brsonbors-13/+11
2014-04-20Allow inheritance between structs.Nick Cameron-5/+30
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-1/+1
2014-04-18Use more precise span when reporting semicolon hintEdward Wang-13/+11
2014-04-17syntax: Parses `&&` as `& &` whenever appropriate.Kang Seonghoon-38/+54
2014-04-16rustc: Remove private enum variantsAlex Crichton-6/+1
2014-04-11syntax: remove ast::Sigil.Eduard Burtescu-26/+6
2014-04-10auto merge of #13440 : huonw/rust/strbuf, r=alexcrichtonbors-4/+5