about summary refs log tree commit diff
path: root/src/libsyntax
AgeCommit message (Expand)AuthorLines
2014-09-03Remove cross-borrowing for traits.Nick Cameron-3/+3
2014-09-01auto merge of #16891 : eddyb/rust/patlit-from-expr-macros, r=kballardbors-0/+10
2014-08-31auto merge of #16809 : nick29581/rust/dst-bug-3, r=alexcrichtonbors-13/+6
2014-08-31auto merge of #16788 : Manishearth/rust/raw-ptr-syntax-ty, r=huonwbors-1/+16
2014-08-30rollup merge of #16839 : treeman/issue-15358Alex Crichton-1/+1
2014-08-31Allow ExprLit expression macros to be used in patterns.Eduard Burtescu-0/+10
2014-08-30auto merge of #16859 : alexcrichton/rust/snapshots, r=huonwbors-26/+0
2014-08-30auto merge of #16419 : huonw/rust/pretty-expanded-hygiene, r=pnkfelixbors-3/+7
2014-08-30rustc: implement a pretty mode to print ident/name's ctxt & gensyms.Huon Wilson-3/+7
2014-08-29Fix formatting, update copyright datesPythoner6-5/+5
2014-08-29Add support for labeled while loops.Pythoner6-12/+28
2014-08-29Register new snapshotsAlex Crichton-26/+0
2014-08-30Unify non-snake-case lints and non-uppercase statics lintsP1start-2/+2
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-463/+426
2014-08-27Allow *-pointers in PtrTy (fixes #16781)Manish Goregaokar-1/+16
2014-08-27auto merge of #16689 : wickerwaka/rust/crate-as, r=pcwaltonbors-5/+15
2014-08-26Rebasing changesNick Cameron-14/+17
2014-08-26DST coercions and DST structsNick Cameron-97/+35
2014-08-25auto merge of #16699 : treeman/rust/issue-8492, r=alexcrichtonbors-13/+13
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-13/+13
2014-08-23extern crate foobar as foo;wickerwaka-5/+15
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-20librustc: handle repr on structs, require it for ffi, unify with packedCorey Richardson-25/+20
2014-08-19Fix double evaluation of read+write operandsPiotr Czarnecki-23/+19
2014-08-18libsyntax: Remove the `use foo = bar` syntax from the language in favorPatrick Walton-4/+10
2014-08-18Forbid extern statics from appearing in patternsJakub Wieczorek-15/+0
2014-08-16librustc: Forbid external crates, imports, and/or items from beingPatrick Walton-47/+51
2014-08-15auto merge of #16424 : pcwalton/rust/where-clauses, r=nikomatsakisbors-103/+299
2014-08-15auto merge of #16435 : vadimcn/rust/windows, r=pcwaltonbors-8/+8
2014-08-14librustc: Implement simple `where` clauses.Patrick Walton-103/+299
2014-08-14auto merge of #16468 : pcwalton/rust/as-renaming-import, r=alexcrichtonbors-8/+16
2014-08-14libsyntax: Accept `use foo as bar;` in lieu of `use bar as foo;`Patrick Walton-8/+16
2014-08-14librustc: Stop assuming that implementations and traits only containPatrick Walton-148/+256
2014-08-14auto merge of #16122 : pcwalton/rust/lifetimes-in-unboxed-closures, r=pnkfelixbors-99/+152
2014-08-14librustc: Tie up loose ends in unboxed closures.Patrick Walton-99/+152
2014-08-14auto merge of #16332 : brson/rust/slicestab, r=aturonbors-3/+3
2014-08-14auto merge of #15929 : pcwalton/rust/by-ref-closures, r=alexcrichtonbors-19/+50
2014-08-13librustc: Parse, but do not fully turn on, the `ref` keyword forPatrick Walton-19/+50
2014-08-13core: Change the argument order on splitn and rsplitn for strs.Brian Anderson-3/+3
2014-08-13quote_expr macro: embed Ident using special encoding that preserves hygiene.Felix S. Klock II-31/+345
2014-08-12libsyntax: Don't strip types and lifetimes from single-segment paths inPatrick Walton-1/+10
2014-08-12Replace #[cfg(target_os = "win32")] with #[cfg(target_os = "windows")]Vadim Chugunov-1/+1
2014-08-12Replace all references to "Win32" with "Windows".Vadim Chugunov-8/+8
2014-08-09Helper method for `pprust::State` for printing instances of `ast_map::Node`.Felix S. Klock II-0/+29
2014-08-09refactored pprust::State constructor methods out from `pprust::print_crate`.Felix S. Klock II-24/+51
2014-08-09ast_map: Added iterator over all node id's that match a path suffix.Felix S. Klock II-1/+132