about summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
AgeCommit message (Expand)AuthorLines
2014-03-03syntax: make match arms store the expr directly.Huon Wilson-1/+1
2014-03-01libsyntax: Fix errors arising from the automated `~[T]` conversionPatrick Walton-0/+3
2014-03-01libsyntax: Mechanically change `~[T]` to `Vec<T>`Patrick Walton-49/+49
2014-02-26Replace callee_id with information stored in method_map.Eduard Burtescu-18/+5
2014-02-24std: minor whitespace cleanupErick Tryzelaar-19/+19
2014-02-24Move extra::json to libserializeAlex Crichton-2/+1
2014-02-23Remove all ToStr impls, add Show implsAlex Crichton-27/+28
2014-02-23auto merge of #12338 : edwardw/rust/hygienic-break-continue, r=cmrbors-4/+9
2014-02-24Transition to new `Hash`, removing IterBytes and std::to_bytes.Huon Wilson-81/+81
2014-02-23Make break and continue hygienicEdward Wang-4/+9
2014-02-23Move std::{trie, hashmap} to libcollectionsAlex Crichton-3/+3
2014-02-22auto merge of #12451 : edwardw/rust/ident-2-name, r=cmrbors-2/+1
2014-02-22Warn about unnecessary parentheses upon assignmentEduard Bopp-1/+1
2014-02-22Represent lifetimes as Names instead of IdentsEdward Wang-2/+1
2014-02-20move extra::test to libtestLiigo Zhuang-2/+3
2014-02-14extern mod => extern crateAlex Crichton-1/+1
2014-02-14Removed the obsolete ast::CallSugar (previously used by `do`).Eduard Burtescu-9/+3
2014-02-14Refactored ast_map and friends, mainly to have Paths without storing them.Eduard Burtescu-3/+2
2014-02-13Replace `crate` usage with `krate`Flavio Percoco-1/+1
2014-02-07Removed @self and @Trait.Eduard Burtescu-2/+1
2014-02-06Remove reference to @str in commentFlorian Hahn-2/+2
2014-02-05pull extra::{serialize, ebml} into a separate libserialize crateJeff Olson-2/+3
2014-02-02syntax: remove the unused Vstore enum.Huon Wilson-9/+0
2014-02-02syntax: remove the handling of @str and @[] from the parser completely.Huon Wilson-1/+0
2014-02-02syntax: convert LitBinary from @[u8] to Rc<~[u8]>.Huon Wilson-1/+2
2014-02-02libsyntax: Remove the `interner_get` function and all usesPatrick Walton-3/+4
2014-02-02libsyntax: Remove all `@str` from the ASTPatrick Walton-5/+5
2014-02-02libsyntax: Make float literals not use `@str`Patrick Walton-2/+2
2014-02-02libsyntax: De-`@str` literal strings in the ASTPatrick Walton-1/+1
2014-02-02libsyntax: Introduce an `InternedString` type to reduce `@str` in thePatrick Walton-4/+5
2014-01-31Fix minor doc typosVirgile Andreani-2/+2
2014-01-30Implement default type parameters in generics.Eduard Burtescu-1/+2
2014-01-29Removing support for the do syntax from libsyntax and librustc.Scott Lawrence-2/+0
2014-01-27Demote self to an (almost) regular argument and remove the env param.Eduard Burtescu-17/+34
2014-01-21Remove unnecessary parentheses.Huon Wilson-1/+1
2014-01-17syntax::ast: Remove/Recover testsklutzy-106/+15
2014-01-15register snapshotsDaniel Micay-7/+0
2014-01-14auto merge of #11485 : eddyb/rust/sweep-old-rust, r=nikomatsakisbors-4/+4
2014-01-13librustc: Remove `@` pointer patterns from the languagePatrick Walton-1/+0
2014-01-12Removed remnants of `@mut` and `~mut` from comments and the type system.Eduard Burtescu-4/+4
2014-01-09auto merge of #11055 : pcwalton/rust/placement-box, r=pcwaltonbors-0/+2
2014-01-09librustc: Implement placement `box` for GC and unique pointers.Patrick Walton-0/+2
2014-01-09libsyntax: Renamed types, traits and enum variants to CamelCase.Eduard Burtescu-215/+222
2014-01-07'borrowed pointer' -> 'reference'Brian Anderson-1/+1
2014-01-03librustc: Remove `@mut` support from the parserPatrick Walton-3/+2
2014-01-03libsyntax: De-`@mut` `SCTable::rename_memo`Patrick Walton-1/+1
2014-01-03libsyntax: De-`@mut` `SCTable::mark_memo`Patrick Walton-3/+3
2014-01-03libsyntax: De-`@mut` `SCTable::table`Patrick Walton-1/+2
2014-01-01Remove `extern mod foo (name="bar")` syntax, closes #9543Florian Hahn-1/+1
2013-12-17Remove obsolete mutability from ast::TySeo Sanghyeon-3/+3