| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-11-07 | Rename src/rustc to src/librustc. Use the driver crate | Brian Anderson | -2779/+0 | |
| 2012-11-06 | rustc: reuse const vals, translate fn paths as consts. Close #2530. | Graydon Hoare | -0/+1 | |
| 2012-11-05 | rustc: Stop declaring unused upcalls | Brian Anderson | -2/+1 | |
| 2012-11-02 | rustc: Implement translation of pattern matching for tuple structs and ↵ | Patrick Walton | -2/+4 | |
| unit-like structs. r=nmatsakis | ||||
| 2012-10-26 | rustc: Translate monomorphic intra-crate automatically-derived methods that ↵ | Patrick Walton | -1/+42 | |
| follow the "eq" format | ||||
| 2012-10-25 | rustc: Translate tuple struct constructors | Patrick Walton | -8/+83 | |
| 2012-10-23 | rustc: Implement construction of monomorphic struct-like variants. r=nmatsakis | Patrick Walton | -1/+1 | |
| 2012-10-23 | Remove <- operator from the compiler | Tim Chevalier | -7/+2 | |
| Yield an obsolete syntax error on things like "let foo <- bar;" and "foo <- bar;" r=brson Progress on #3466 | ||||
| 2012-10-23 | rustc: Implement typechecking for simple monomorphic derivable traits on ↵ | Patrick Walton | -2/+11 | |
| monomorphic types. r=brson | ||||
| 2012-10-22 | Long lines | Brian Anderson | -1/+2 | |
| 2012-10-22 | Merge pull request #3826 from jdm/doublefail | Brian Anderson | -1/+1 | |
| Fix ICE stemming from use of unique pointers in unreachable blocks. | ||||
| 2012-10-22 | Preliminary support for labeled break/continue for `loop`s | Tim Chevalier | -3/+4 | |
| This patch adds preliminary middle-end support (liveness and trans) for breaks and `loop`s to `loop` constructs that have labels. while and for loops can't have labels yet. Progress on #2216 | ||||
| 2012-10-21 | Fix ICE stemming from use of unique pointers in unreachable blocks. | Josh Matthews | -1/+1 | |
| 2012-10-15 | rustc: Merge module and type namespaces. r=brson | Patrick Walton | -3/+3 | |
| 2012-10-15 | rustc: Implement monomorphic default methods. r=nmatsakis | Patrick Walton | -68/+26 | |
| 2012-10-12 | remove ctor from ast (take 2) (no review: just dead code removal) | Niko Matsakis | -75/+4 | |
| 2012-10-11 | Update FIXME numbers | Tim Chevalier | -1/+1 | |
| 2012-10-08 | Revert "remove ctor from ast" | Tim Chevalier | -4/+75 | |
| This reverts commit ed3689d57c988e1dd477930d957c4308c37d1a64. | ||||
| 2012-10-08 | remove ctor from ast | Niko Matsakis | -75/+4 | |
| 2012-10-05 | Remove by-mutable-ref mode from the compiler | Tim Chevalier | -1/+1 | |
| and test cases. Closes #3513 | ||||
| 2012-10-05 | rustc: Add a new method_self method call origin. Part of default methods. | Patrick Walton | -3/+12 | |
| 2012-10-05 | rustc: Thread a self type through trans_impl; fix cross-crate trait issue | Patrick Walton | -6/+13 | |
| 2012-10-05 | rustc: Translate default methods on traits for each impl in which they're ↵ | Patrick Walton | -5/+27 | |
| used instead of once. This is a step on the way to default methods. | ||||
| 2012-10-05 | Revert "wip" | Tim Chevalier | -1/+1 | |
| This reverts commit ca49fd402af8e7bf613c43e996274b5a017958d2. | ||||
| 2012-10-05 | wip | Tim Chevalier | -1/+1 | |
| 2012-10-04 | Remove arg vectors from main functions. Stop supporting them. | Brian Anderson | -16/+4 | |
| 2012-10-03 | rustc: Fix ICE when de-exporting rt | Patrick Walton | -3/+8 | |
| 2012-10-03 | rustc: Unbreak old-style boxed traits | Patrick Walton | -1/+1 | |
| 2012-09-28 | demode vec | Niko Matsakis | -1/+1 | |
| 2012-09-27 | core: More option demoding | Brian Anderson | -2/+2 | |
| 2012-09-26 | Remove spurious by-ref argument to destructors | Tim Chevalier | -6/+4 | |
| Destructors were internally declared with an extra (hidden) nil-typed argument that was passed in by-ref mode. This was causing spurious mode warnings. Deleted it. Also some misc. cleanup because I couldn't help myself. | ||||
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -8/+8 | |
| 2012-09-26 | Allow hashmaps to infer their types | Erick Tryzelaar | -13/+13 | |
| 2012-09-25 | rustc: Stop generating shape tables | Patrick Walton | -4/+0 | |
| 2012-09-25 | rustc: Fix calls to the logging function when the must_cast flag is true; ↵ | Patrick Walton | -6/+0 | |
| stop using shape code for logging | ||||
| 2012-09-25 | Revert "rustc: Stop using shape code for logging" due to ICEs | Patrick Walton | -0/+6 | |
| This reverts commit ac822a52be47579ffa59d5ca3e125680a79545d0. | ||||
| 2012-09-25 | rustc: Stop using shape code for logging | Patrick Walton | -6/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -12/+12 | |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -6/+6 | |
| 2012-09-21 | rustc: Shove the address of the box annihilator into the crate map | Patrick Walton | -3/+19 | |
| 2012-09-20 | Revert "syntax: Make attributes sendable for rustdoc's benefit" | Brian Anderson | -2/+2 | |
| This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8. | ||||
| 2012-09-20 | syntax: Make attributes sendable for rustdoc's benefit | Brian Anderson | -2/+2 | |
| 2012-09-20 | fix long lines | Niko Matsakis | -1/+2 | |
| 2012-09-20 | Make + mode by-value if the type is immediate, by-ref otherwise | Niko Matsakis | -46/+58 | |
| Fixes #3523 | ||||
| 2012-09-20 | Remove export_map from resolve, just use export_map2. | Graydon Hoare | -21/+1 | |
| 2012-09-19 | Remove redundant hashmap constructor functions. | Graydon Hoare | -21/+20 | |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -28/+29 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -39/+39 | |
| 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 | -39/+39 | |
| 2012-09-18 | Revert "rustc: Change all non-keyword uses of "link"" | Patrick Walton | -3/+3 | |
| This reverts commit 3b013cd800ce675a445220105911bbefd2427e47. | ||||
