about summary refs log tree commit diff
path: root/src/libsyntax/ast_util.rs
AgeCommit message (Expand)AuthorLines
2013-08-15Switch to new <V:Visitor> visitor (rather than @Visitor).Felix S. Klock II-72/+77
2013-08-12Forbid pub/priv where it has no effectAlex Crichton-1/+1
2013-08-11libsyntax: Update from `@Object` to `@mut Object` as requiredNiko Matsakis-25/+25
2013-08-10Mass rename of .consume{,_iter}() to .move_iter()Erick Tryzelaar-1/+1
2013-08-09std/rustc/rustpkg/syntax: Support the `extern mod = ...` formTim Chevalier-1/+1
2013-08-07core: option.map_consume -> option.map_moveErick Tryzelaar-1/+1
2013-08-05Fix an unused variable warning and clean up some dead code/names.Michael Sullivan-1/+1
2013-08-03remove obsolete `foreach` keywordDaniel Micay-8/+8
2013-08-02librustc: Introduce a new visitor type based on traits and port syntax to it.Patrick Walton-118/+301
2013-08-01migrate many `for` loops to `foreach`Daniel Micay-8/+8
2013-07-29New naming convention for ast::{node_id, local_crate, crate_node_id, blk_chec...Michael Woerister-21/+21
2013-07-22Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg.Michael Woerister-5/+5
2013-07-22new snapshotDaniel Micay-3/+0
2013-07-18Silence various warnings in bootstrap build.Felix S. Klock II-2/+0
2013-07-17test: Fix tests.Patrick Walton-1/+1
2013-07-17librustc: Remove all uses of the `Copy` bound.Patrick Walton-1/+3
2013-07-17librustc: Remove all uses of "copy".Patrick Walton-45/+51
2013-07-17librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them.Patrick Walton-4/+6
2013-07-17Made ast::blk not use spanned<T> anymore.Michael Woerister-6/+8
2013-07-14Make TLS keys actually take up spaceAlex Crichton-1/+1
2013-07-14Purge the last remnants of the old TLS apiAlex Crichton-13/+11
2013-07-12auto merge of #7725 : msullivan/rust/default-methods, r=pcwaltonbors-3/+3
2013-07-12auto merge of #7706 : sanxiyn/rust/qualification-lint, r=pcwaltonbors-0/+1
2013-07-11Get cross crate static default methods working. Closes #7569.Michael Sullivan-3/+3
2013-07-11Remove all external requirements of `@` from TLSAlex Crichton-1/+1
2013-07-10Add a lint to detect unnecessarily qualified namesSeo Sanghyeon-0/+1
2013-07-09Rename local_data methods/types for less keystrokesAlex Crichton-2/+2
2013-07-08 Replaces the free-standing functions in f32, &c.Jens Nockert-2/+3
2013-07-07De-share trait_refJames Miller-1/+1
2013-07-07De-managed ast::PathJames Miller-3/+3
2013-07-04Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by iterat...Huon Wilson-2/+2
2013-06-30Remove vec::{map, mapi, zip_map} and the methods, except for .map, since thisHuon Wilson-1/+1
2013-06-29Remove mutability from unique boxes in the ASTAlex Crichton-1/+1
2013-06-29'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep f...Ben Blum-5/+5
2013-06-29Use more deriving(IterBytes) in libsyntax.Ben Blum-9/+0
2013-06-29Change taskgroup key type to fn:Copy in prep for noncopyable stack closures.Ben Blum-1/+1
2013-06-28librustc: Rewrite reachability and forbid duplicate methods in type implement...Patrick Walton-1/+1
2013-06-28librustc: Disallow "mut" from distributing over bindings.Patrick Walton-0/+9
2013-06-27Remove many shared pointersPhilipp Brüschweiler-3/+3
2013-06-25auto merge of #7365 : cmr/rust/syntax_cleanup, r=Aatchbors-9/+7
2013-06-25remove the redundant `each` method from OptVecDaniel Micay-2/+2
2013-06-25great renaming propagation: syntaxCorey Richardson-9/+7
2013-06-23Add 'static mut' items to the languageAlex Crichton-1/+1
2013-06-23Parse and typecheck (not kindcheck) bounds on trait paths.Ben Blum-1/+1
2013-06-23vec: remove BaseIter implementationDaniel Micay-8/+8
2013-06-18replace #[inline(always)] with #[inline]. r=burningtree.Graydon Hoare-1/+1
2013-06-16Add copies to type params with Copy boundNiko Matsakis-26/+26
2013-06-14add IteratorUtil to the preludeDaniel Micay-2/+0
2013-06-13Use @str instead of @~str in libsyntax and librustc. Fixes #5048.Huon Wilson-2/+2
2013-06-12Visitor refactoring: Step 1, couple (Env, vt<Env>) together in a tuple.Felix S. Klock II-30/+30