about summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
AgeCommit message (Expand)AuthorLines
2014-09-19rollup merge of #17314 : eddyb/span-no-gcAlex Crichton-2/+2
2014-09-18librustc: Implement the syntax in the RFC for unboxed closure sugar.Patrick Walton-1/+8
2014-09-19Implement slicing syntax.Nick Cameron-0/+1
2014-09-18Fix fallout in tests from removing the use of Gc in ExpnInfo.Eduard Burtescu-2/+2
2014-09-17librustc: Implement associated types behind a feature gate.Patrick Walton-0/+34
2014-09-14syntax: ast_map: use borrowed references into the AST.Eduard Burtescu-7/+2
2014-09-14syntax: ast: replace Gc<T> (previously @T) with P<T>.Eduard Burtescu-77/+76
2014-09-14syntax: add a custom owned smart pointer in ptr::P.Eduard Burtescu-10/+0
2014-09-10Implement tuple and tuple struct indexingP1start-0/+1
2014-08-29Add support for labeled while loops.Pythoner6-1/+2
2014-08-30Unify non-snake-case lints and non-uppercase statics lintsP1start-1/+1
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-11/+8
2014-08-26DST coercions and DST structsNick Cameron-11/+0
2014-08-19Fix double evaluation of read+write operandsPiotr Czarnecki-2/+2
2014-08-15auto merge of #16424 : pcwalton/rust/where-clauses, r=nikomatsakisbors-1/+16
2014-08-14librustc: Implement simple `where` clauses.Patrick Walton-1/+16
2014-08-14auto merge of #16468 : pcwalton/rust/as-renaming-import, r=alexcrichtonbors-2/+2
2014-08-14libsyntax: Accept `use foo as bar;` in lieu of `use bar as foo;`Patrick Walton-2/+2
2014-08-14librustc: Stop assuming that implementations and traits only containPatrick Walton-6/+17
2014-08-14librustc: Tie up loose ends in unboxed closures.Patrick Walton-1/+9
2014-08-14auto merge of #15929 : pcwalton/rust/by-ref-closures, r=alexcrichtonbors-2/+8
2014-08-13librustc: Parse, but do not fully turn on, the `ref` keyword forPatrick Walton-2/+8
2014-08-13quote_expr macro: embed Ident using special encoding that preserves hygiene.Felix S. Klock II-0/+6
2014-08-08auto merge of #16285 : alexcrichton/rust/rename-share, r=huonwbors-1/+1
2014-08-07Rename `Share` to `Sync`Alex Crichton-1/+1
2014-08-07Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`,Niko Matsakis-3/+9
2014-08-06AST refactoring: merge PatWild and PatWildMulti into one variant with a flag.Felix S. Klock II-2/+12
2014-08-05Fixes missing overflow lint for i64 #14269Falco Hirschenberger-3/+35
2014-07-31auto merge of #15999 : Kimundi/rust/fix_folder, r=nikomatsakisbors-12/+12
2014-07-29syntax: promote a comment on PatEnum into a docstringErick Tryzelaar-2/+4
2014-07-29Add a few more derivings to AST typesMarvin Löbel-10/+10
2014-07-29Refactored syntax::fold.Marvin Löbel-2/+2
2014-07-24libsyntax: Remove `~self` and `mut ~self` from the language.Patrick Walton-2/+0
2014-07-21repair macro docsJohn Clements-1/+1
2014-07-20Implement new mod import sugarJakub Wieczorek-5/+13
2014-07-18librustc: Implement unboxed closures with mutable receiversPatrick Walton-2/+11
2014-07-16librustc: Implement the fully-expanded, UFCS form of explicit self.Patrick Walton-2/+4
2014-07-15libsyntax::ast: Derive Show implsBen Gamari-70/+70
2014-07-13auto merge of #15646 : jbclements/rust/method-macros, r=cmrbors-8/+11
2014-07-13refactor Method definition to make space for macrosJohn Clements-8/+11
2014-07-13auto merge of #15584 : alexcrichton/rust/warn-annoyances, r=cmrbors-2/+9
2014-07-12Use a nicer Show impl for NameCorey Richardson-2/+9
2014-07-12auto merge of #15601 : jbclements/rust/disable-default-macro-behavior, r=alex...bors-0/+2
2014-07-11use side table to store exported macrosJohn Clements-0/+2
2014-07-09syntax: De-doc comment to fix nightliesAlex Crichton-50/+50
2014-07-09ast: make Name its own typeCorey Richardson-5/+21
2014-07-09syntax: don't parse numeric literals in the lexerCorey Richardson-2/+30
2014-07-09ast: add an `as_str` method to IdentCorey Richardson-0/+7
2014-07-09syntax: use a better Show impl for IdentCorey Richardson-1/+7
2014-07-09syntax: doc comments all the thingsCorey Richardson-178/+188