summary refs log tree commit diff
path: root/src/librustc/middle/dataflow.rs
AgeCommit message (Expand)AuthorLines
2013-09-23librustc: Port the pretty printer annotation infrastructure to use traits ins...Patrick Walton-40/+39
2013-09-10change type of ExprLoop and ExprBreak elts from ident->name.John Clements-1/+1
2013-09-05Remove the __log function for __log_levelAlex Crichton-1/+1
2013-09-03Modernized a few more types in syntax::astMarvin Löbel-56/+56
2013-09-02Renamed syntax::ast::ident -> IdentMarvin Löbel-1/+1
2013-08-07rustc: Fix for-range loops that can use iteratorsblake2-ppc-4/+4
2013-08-04rm obsolete `for` support from the compilerDaniel Micay-45/+2
2013-08-03remove obsolete `foreach` keywordDaniel Micay-15/+15
2013-08-03replace all remaining `for` with `foreach` or `do`Daniel Micay-2/+3
2013-08-02replace `range` with an external iteratorDaniel Micay-4/+4
2013-08-01std: Change `Times` trait to use `do` instead of `for`blake2-ppc-1/+1
2013-08-01migrate many `for` loops to `foreach`Daniel Micay-12/+12
2013-07-30syntax: implement foreach .. in .. { .. } via desugaring.Graydon Hoare-0/+2
2013-07-29New naming convention for ast::{node_id, local_crate, crate_node_id, blk_chec...Michael Woerister-16/+16
2013-07-22De-spanned<T> and renamed ast::field (now ast::Field)Michael Woerister-1/+1
2013-07-22Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg.Michael Woerister-5/+5
2013-07-17librustc: Remove `copy` expressions from the language.Patrick Walton-1/+0
2013-07-17librustc: Remove all uses of "copy".Patrick Walton-14/+17
2013-07-17Made ast::blk not use spanned<T> anymore.Michael Woerister-7/+7
2013-07-08Modify borrow checker to visit irrefutable patterns that appear inNiko Matsakis-1/+1
2013-07-07remove some method resolve workaroundsDaniel Micay-4/+4
2013-06-29Great renaming: propagate throughout the rest of the codebaseCorey Richardson-6/+5
2013-06-27Convert vec::[mut_]slice to methods, remove vec::const_slice.Huon Wilson-11/+11
2013-06-23vec: remove BaseIter implementationDaniel Micay-9/+9
2013-06-21vec: rm old_iter implementations, except BaseIterDaniel Micay-16/+16
2013-06-18replace #[inline(always)] with #[inline]. r=burningtree.Graydon Hoare-1/+1
2013-06-17rustc: map node ids through a table that ensures bitset indexes in dataflow a...Graydon Hoare-20/+71
2013-06-14add IteratorUtil to the preludeDaniel Micay-1/+0
2013-06-11option: remove redundant old_iter implsDaniel Micay-1/+1
2013-06-10clean-up unused import warningsHuon Wilson-1/+0
2013-06-10std: convert str::reserve* to methods, and methodise str::push_*.Huon Wilson-3/+3
2013-06-08std: remove each[i]_mut functions, in favour of iterators.Huon Wilson-1/+2
2013-06-04librustc: Disallow multiple patterns from appearing in a "let" declaration.Patrick Walton-5/+3
2013-06-01syntax: move callee_id into the expr_ variantsErick Tryzelaar-13/+13
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-0/+3
2013-05-28Move checking for moves and initialization of local variables and patterns intoNiko Matsakis-2/+2
2013-05-22libextra: Rename the actual metadata names of libcore to libstd and libstd to...Patrick Walton-0/+2
2013-05-20Remove all unnecessary allocations (as flagged by lint)Alex Crichton-2/+2
2013-05-20auto merge of #6635 : brson/rust/snapshot, r=brsonbors-58/+0
2013-05-19Register snapshotsBrian Anderson-58/+0
2013-05-19Fix many warnings.Steve Klabnik-1/+0
2013-05-18minor automated whitespace fixesDaniel Micay-1/+0
2013-05-12librustc: Make `self` and `static` into keywordsPatrick Walton-1/+2
2013-05-10Remove the '<->' operator from the languageAlex Crichton-5/+0
2013-05-10rustc: Use the new `for` protocolAlex Crichton-0/+61
2013-05-06Replace NOTE with FIXMENiko Matsakis-1/+1
2013-04-30dataflow: fix flow of information through pattern variantsNiko Matsakis-2/+1
2013-04-30new borrow checker (mass squash)Niko Matsakis-0/+1009