| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-06-29 | Warning cleanup | Corey Richardson | -2/+0 | |
| 2013-06-29 | Great renaming: propagate throughout the rest of the codebase | Corey Richardson | -9/+5 | |
| 2013-06-28 | librustc: Fix merge fallout and test cases. | Patrick Walton | -1/+3 | |
| 2013-06-28 | librustc: Change Const to Freeze in the compiler | Patrick Walton | -2/+2 | |
| 2013-06-28 | librustc: Rename Owned to Send in the compiler | Patrick Walton | -2/+2 | |
| 2013-06-25 | Change finalize -> drop. | Luqman Aden | -1/+1 | |
| 2013-06-25 | Warning police | James Miller | -1/+0 | |
| 2013-06-23 | Fix pretty-printing builtin bounds on closures and traits | Ben Blum | -2/+6 | |
| 2013-06-23 | Parse and typecheck (not kindcheck) bounds on trait paths. | Ben Blum | -2/+6 | |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -2/+2 | |
| I removed the `static-method-test.rs` test because it was heavily based on `BaseIter` and there are plenty of other more complex uses of static methods anyway. | ||||
| 2013-06-22 | Fix-up PP Code to reflect new lifetime param syntax | James Miller | -37/+44 | |
| 2013-06-22 | Initial Type Refactoring done | James Miller | -9/+9 | |
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -1/+0 | |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -4/+4 | |
| This almost removes the StringRef wrapper, since all strings are Equiv-alent now. Removes a lot of `/* bad */ copy *`'s, and converts several things to be &'static str (the lint table and the intrinsics table). There are many instances of .to_managed(), unfortunately. | ||||
| 2013-06-12 | Visitor refactoring: Step 1, couple (Env, vt<Env>) together in a tuple. | Felix S. Klock II | -8/+8 | |
| 2013-06-11 | option: remove redundant old_iter impls | Daniel Micay | -1/+2 | |
| 2013-06-11 | fix tests, remove some warnings | Huon Wilson | -1/+0 | |
| 2013-06-10 | std: remove str::{connect,concat}*. | Huon Wilson | -8/+8 | |
| 2013-06-10 | std: remove str::{len, slice, is_empty} in favour of methods. | Huon Wilson | -1/+1 | |
| 2013-06-06 | auto merge of #6980 : Kimundi/rust/iterator-collect3, r=thestinger | bors | -8/+8 | |
| 2013-06-06 | Fixups | Marvin Löbel | -8/+8 | |
| 2013-06-06 | Clean up a handful of build warnings. | Michael Sullivan | -1/+1 | |
| 2013-06-05 | token_to_ident takes argument by reference | John Clements | -1/+1 | |
| 2013-06-05 | interner just uses uints, not idents with syntax context | John Clements | -1/+1 | |
| 2013-06-05 | removed some interner fields | John Clements | -1/+2 | |
| 2013-06-01 | syntax: move callee_id into the expr_ variants | Erick Tryzelaar | -1/+0 | |
| 2013-06-01 | Remove all uses of `pub impl`. rs=style | Patrick Walton | -10/+10 | |
| 2013-05-30 | Add 'Sized' builtin kind; doesn't do anything yet | Ben Blum | -1/+3 | |
| 2013-05-30 | Remove a bunch of unnecessary allocations and copies | Björn Steinbrink | -1/+1 | |
| 2013-05-29 | librustc: Stop reexporting the standard modules from prelude. | Patrick Walton | -0/+6 | |
| 2013-05-28 | Move checking for moves and initialization of local variables and patterns into | Niko Matsakis | -0/+6 | |
| borrow checker and generalize what moves are allowed. Fixes a nasty bug or two in the pattern move checking code. Unifies dataflow code used for initialization and other things. First step towards once fns. Everybody wins. Fixes #4384. Fixes #4715. cc once fns (#2202), optimizing local moves (#5016). | ||||
| 2013-05-28 | Remove unnecessary allocations flagged by lint | Seo Sanghyeon | -4/+4 | |
| 2013-05-23 | cleanup warnings from librustc | Erick Tryzelaar | -2/+0 | |
| 2013-05-22 | librustc: Add some missing `use core::prelude::*;` in the test cases | Patrick Walton | -0/+3 | |
| 2013-05-22 | librustc: Change `std` to `extra` throughout libsyntax and librustc | Patrick Walton | -3/+3 | |
| 2013-05-22 | libextra: Rename the actual metadata names of libcore to libstd and libstd ↵ | Patrick Walton | -0/+8 | |
| to libextra | ||||
| 2013-05-20 | Remove all unnecessary allocations (as flagged by lint) | Alex Crichton | -5/+5 | |
| 2013-05-19 | Register snapshots | Brian Anderson | -19/+0 | |
| 2013-05-16 | fix warnings | Corey Richardson | -0/+1 | |
| 2013-05-16 | Add BuiltinBounds to closure type: parse and handle subtyping, | Niko Matsakis | -1/+11 | |
| but do not integrate with kindck etc (requires a snapshot first) | ||||
| 2013-05-15 | auto merge of #6487 : recrack/rust/vec_len, r=thestinger | bors | -1/+1 | |
| Rename vec::len(var) to var.len() ``` libcore, libfuzzer, librustc, librustdoc, libstd, libsyntax test/auxiliary test/bench test/run-pass ``` | ||||
| 2013-05-14 | rustc: rename ty::method to ty::Method and add ctor | Erick Tryzelaar | -3/+3 | |
| 2013-05-14 | rustc: rename ast::self_ty and related fields to explicit_self | Erick Tryzelaar | -3/+3 | |
| 2013-05-14 | rustc: Remove ty::arg | Erick Tryzelaar | -10/+4 | |
| 2013-05-15 | Rename vec::len(var) to var.len() | Youngmin Yoo | -1/+1 | |
| 2013-05-14 | Fix test fallout from removing vecs_implicitly_copyable | Alex Crichton | -1/+0 | |
| 2013-05-13 | Remove re-exports from libcore/core.rc | Alex Crichton | -3/+3 | |
| Also fix up all the fallout elsewhere throughout core. It's really nice being able to have the prelude. | ||||
| 2013-05-10 | Fix merge "failures" | Alex Crichton | -0/+17 | |
| 2013-05-09 | rustc: Add EnumSet tests | Niko Matsakis | -4/+149 | |
| 2013-05-09 | Refactor representation of bounds to separate out BuiltinBounds into | Niko Matsakis | -21/+159 | |
| its own type. Use a bitset to represent built-in bounds. There are several places in the language where only builtin bounds (aka kinds) will be accepted, e.g. on closures, destructor type parameters perhaps, and on trait types. | ||||
