| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-25 | Revert "rustc: Stop using shape code for logging" due to ICEs | Patrick Walton | -28/+11 | |
| This reverts commit ac822a52be47579ffa59d5ca3e125680a79545d0. | ||||
| 2012-09-25 | rustc: Stop using shape code for logging | Patrick Walton | -11/+28 | |
| 2012-09-24 | Build the export_map2 from visibility markers, unless #[legacy_exports]; | Graydon Hoare | -11/+60 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -1179/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -91/+91 | |
| 2012-09-23 | Fix trans for region patterns (&P) | Niko Matsakis | -23/+59 | |
| 2012-09-21 | rustc: Make x-ray resolution work with non-legacy-exports | Brian Anderson | -1/+1 | |
| Code generated for the test runner needs to break visibility rules | ||||
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -97/+94 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -21/+70 | |
| #[legacy_exports]; | ||||
| 2012-09-21 | rustc: Shove the address of the box annihilator into the crate map | Patrick Walton | -3/+19 | |
| 2012-09-21 | rustc: Remove middle/tstate | Brian Anderson | -2622/+0 | |
| I feel like I've done this before | ||||
| 2012-09-20 | Revert "syntax: Make attributes sendable for rustdoc's benefit" | Brian Anderson | -3/+3 | |
| This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8. | ||||
| 2012-09-20 | syntax: Make attributes sendable for rustdoc's benefit | Brian Anderson | -3/+3 | |
| 2012-09-20 | core: Move 'unreachable' to util. Improve docs | Brian Anderson | -1/+1 | |
| 2012-09-20 | fix long lines | Niko Matsakis | -4/+5 | |
| 2012-09-20 | Make + mode by-value if the type is immediate, by-ref otherwise | Niko Matsakis | -92/+190 | |
| Fixes #3523 | ||||
| 2012-09-20 | Remove export_map from resolve, just use export_map2. | Graydon Hoare | -74/+20 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -55/+1268 | |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -155/+151 | |
| 2012-09-19 | Remove redundant hashmap constructor functions. | Graydon Hoare | -103/+100 | |
| 2012-09-19 | Remove unused hokey-hashes from typeck and region inference. | Graydon Hoare | -119/+1 | |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -139/+157 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-19 | use && for fn() even in legacy mode to work around mem leak | Niko Matsakis | -2/+12 | |
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -238/+221 | |
| demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready. | ||||
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -221/+238 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -11/+11 | |
| 2012-09-18 | Revert "change relative priority of auto-slice and auto-ptr" | Graydon Hoare | -2/+2 | |
| This reverts commit 2ac64d91ac9df242c780d162863c8c0abce448b1. | ||||
| 2012-09-18 | Treat static slices and rptrs as sendable. | Graydon Hoare | -1/+11 | |
| 2012-09-18 | rustc: Remove legacy mode inference, unless #[legacy_modes] is used | Patrick Walton | -7/+34 | |
| 2012-09-18 | change relative priority of auto-slice and auto-ptr | Niko Matsakis | -2/+2 | |
| rationale: if you have an impl for &const ~[T] or &mut ~[T] and one for &[T], the first will be more likely to work and not lead to borrowck errors. I could imagine us wanting to offer multiple impls for methods we select the ptr-to-array when possible and the slice when necessary. Also, taking a ptr seems like fewer adaptations than slicing, and we tend to prefer fewer adaptations. | ||||
| 2012-09-18 | libcore: make a copyless io::BytesWriter | Erick Tryzelaar | -4/+5 | |
| 2012-09-18 | Change 'must' to 'should' in non_camel_case_types message | Brian Anderson | -2/+3 | |
| 2012-09-18 | libsyntax: Remove 'unchecked_blk' from AST | Brian Anderson | -4/+0 | |
| 2012-09-18 | Revert "rustc: Change all non-keyword uses of "link"" | Patrick Walton | -11/+11 | |
| This reverts commit 3b013cd800ce675a445220105911bbefd2427e47. | ||||
| 2012-09-18 | Replace uses of 'unchecked' with 'unsafe' | Brian Anderson | -4/+4 | |
| 2012-09-18 | rustc: Change all non-keyword uses of "link" | Patrick Walton | -11/+11 | |
| 2012-09-18 | Revert "Adapt callee to avoid intermediary for move/copy arguments (cc #3402)" | Niko Matsakis | -88/+80 | |
| This reverts commit 044fbea416c8778ec8f653b93941dca6f2e9213e. | ||||
| 2012-09-17 | warn(non_camel_case_types) by default | Brian Anderson | -1/+1 | |
| 2012-09-17 | Make auto-slice, auto-ptr not exclusive (fixes #3514) | Niko Matsakis | -7/+7 | |
| 2012-09-17 | WIP: make autoslice, autoptr not be mutually exclusive | Niko Matsakis | -36/+76 | |
| 2012-09-15 | add some debug!'s to help diagnose failure of issue-1763.rs | Niko Matsakis | -1/+12 | |
| 2012-09-15 | Fix broken assertion in regionck for code like (a[])() | Niko Matsakis | -4/+3 | |
| 2012-09-15 | regionck: fix bug where autoref regions are not inferred to be large enough | Niko Matsakis | -44/+101 | |
| 2012-09-14 | rustc: Back out box annihilator | Patrick Walton | -3/+4 | |
| 2012-09-14 | rustc: Call the box annihilator in main | Patrick Walton | -2/+7 | |
| 2012-09-14 | rustc: Make the box annihilator a language item | Patrick Walton | -2/+5 | |
| 2012-09-14 | Have parser recognize static, self region. | Niko Matsakis | -26/+51 | |
| Fixes a bug in methods that &self couldn't be referenced in the body. Also fixes #2479. | ||||
| 2012-09-14 | Adapt callee to avoid intermediary for move/copy arguments (cc #3402) | Niko Matsakis | -80/+88 | |
| 2012-09-13 | Fix unused variable warning. | Graydon Hoare | -1/+0 | |
| 2012-09-13 | Fix bug in auto-ref on bounded type parameters | Niko Matsakis | -14/+62 | |
