| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-02-03 | Remove experimental GC code | Marijn Haverbeke | -172/+8 | |
| It's been sitting unused long enough to have bitrotted completely. | ||||
| 2012-02-02 | Fix assumption in mut.rs that op overloading breaks | Marijn Haverbeke | -4/+1 | |
| Closes #1733 | ||||
| 2012-02-01 | rustdoc: Add support for type items | Brian Anderson | -1/+5 | |
| 2012-02-01 | Rename (again) str::unsafe::slice -> str::unsafe::slice_bytes and | Kevin Cantu | -6/+6 | |
| str::unsafe::safe_slice -> str::unsafe::slice_bytes_safe_range | ||||
| 2012-02-01 | Propagating unsafe::slice 3 | Kevin Cantu | -6/+7 | |
| 2012-02-01 | Propagating unsafe::slice 2 | Kevin Cantu | -8/+8 | |
| 2012-02-01 | make boxes self-describing (fixes #1493)" (take 2) | Niko Matsakis | -282/+296 | |
| this will be used to generate a new snapshot. | ||||
| 2012-02-01 | Revert "make boxes self-describing (fixes #1493)" until a new | Niko Matsakis | -296/+282 | |
| snapshot is prepared. | ||||
| 2012-02-01 | make boxes self-describing (fixes #1493) | Niko Matsakis | -282/+296 | |
| 2012-02-01 | Remove support for native types | Marijn Haverbeke | -124/+17 | |
| Issue #1673 | ||||
| 2012-02-01 | Get rid of native types in LLVM module | Marijn Haverbeke | -268/+250 | |
| Code is still somewhat kludgy because we don't have 32-bit enums. Issue #1673 | ||||
| 2012-01-31 | Change option::t to option | Tim Chevalier | -259/+259 | |
| Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming). | ||||
| 2012-01-31 | Rename str::from_byte(s) to str::unsafe::from_byte(s), | Kevin Cantu | -1/+1 | |
| mark them as unsafe, make comp/driver/driver.rs use str::from_bytes... | ||||
| 2012-01-31 | Merge pull request #1713 from killerswan/manpg | Graydon Hoare | -35/+44 | |
| Updating the manpage and usage message | ||||
| 2012-01-31 | Don't compute pre- and postconditions for item_consts | Tim Chevalier | -16/+1 | |
| Since item_consts can't refer to or modify local variables, they don't participate in typestate and thus get empty pre and postconditions by default. Closes #1660 | ||||
| 2012-01-31 | Require alts to be exhaustive | Tim Chevalier | -344/+689 | |
| middle::check_alt does the work. Lots of changes to add default cases into alts that were previously inexhaustive. | ||||
| 2012-01-31 | Move walk_ty to stack closure | Marijn Haverbeke | -56/+32 | |
| 2012-01-31 | Don't consider references to nullary tag variants lvals in kind.rs | Marijn Haverbeke | -1/+16 | |
| This allows us to express option::map with noncopyable type parameters, which makes sense, since the type params aren't being copied (none doesn't contain any). | ||||
| 2012-01-30 | Updating the manpage and usage message | Kevin Cantu | -35/+44 | |
| 2012-01-30 | rustc: Allow attributes on methods. Closes #1709 | Brian Anderson | -8/+14 | |
| 2012-01-30 | Remove ternary operator | Paul Woolcock | -75/+5 | |
| `expr_ternary`, `ternary_to_if`, and all parses & lexer definitions have been removed. | ||||
| 2012-01-30 | Change all ternary ops to if/then/else | Paul Woolcock | -62/+167 | |
| All the files below had at least one instance of the ternary operator present in the source. All have been changed to the equivalent if/then/else expression. | ||||
| 2012-01-30 | Substitute type parameters more eagerly | Marijn Haverbeke | -304/+201 | |
| This simplifies the typechecker a bit (no more ty_param_substs_opt_and_ty) and is needed for another experiment I'm playing with. I hope it also makes compilation faster (the bots will tell). | ||||
| 2012-01-30 | Revert self types | Marijn Haverbeke | -95/+60 | |
| 2012-01-30 | Remove trailing whitespace in debuginfo.rs | Marijn Haverbeke | -1/+1 | |
| 2012-01-30 | Only build debuginfo blocks for blocks that appear in the program text | Marijn Haverbeke | -81/+104 | |
| I.e. a set of curly braces, not everything that creates a block context in the trans pass. Issue #1694 | ||||
| 2012-01-29 | rustc: Add a missing llvm linkage type | Brian Anderson | -0/+1 | |
| 2012-01-29 | rustc: Add some missing llvm defs. Fix comments | Brian Anderson | -3/+5 | |
| 2012-01-29 | Fix mistake in previous commit | Marijn Haverbeke | -1/+2 | |
| 2012-01-29 | Fix bug where resolve didn't descend method ty params | Marijn Haverbeke | -1/+1 | |
| Closes #1700 | ||||
| 2012-01-28 | core: rename vec::position* functions | Erick Tryzelaar | -4/+4 | |
| Almost all of the vec functions that predicates don't have a corresponding function that takes a single element, so this commit renames the common fn usecase to be the default. | ||||
| 2012-01-28 | Merge remote-tracking branch 'mozilla/master' | Josh Matthews | -46/+72 | |
| 2012-01-28 | Disable lexical block and function debug info caches to improve compilation ↵ | Josh Matthews | -19/+18 | |
| time while #1694 is unfixed, and fix stack-exhaustion bug in block parent generation. | ||||
| 2012-01-27 | rustc: Make 'attempted access of field' error non-fatal | Brian Anderson | -1/+3 | |
| 2012-01-27 | Merge remote-tracking branch 'killerswan/fixing_strings_2' | Brian Anderson | -18/+18 | |
| Conflicts: src/comp/driver/driver.rs src/comp/middle/trans/base.rs src/comp/syntax/parse/lexer.rs | ||||
| 2012-01-27 | Make occurs check in ty::fixup_vars more reliable | Marijn Haverbeke | -11/+19 | |
| It wouldn't detect cycles that went through several type vars before. Closes #1464 | ||||
| 2012-01-27 | Allow moving out of mutable unsafe pointers | Marijn Haverbeke | -10/+12 | |
| This makes it possible to de-initialize values anywhere in memory, which is needed, for example, for a fast imlementation of vec::pop. | ||||
| 2012-01-27 | Properly check enum types for recursion | Marijn Haverbeke | -6/+20 | |
| Closes #742 | ||||
| 2012-01-27 | Move various trans_ modules under a trans:: umbrella module | Marijn Haverbeke | -212/+203 | |
| Closes #1304 | ||||
| 2012-01-27 | Stop passing spans to middle::trans functions that don't need them | Marijn Haverbeke | -224/+164 | |
| Removes a bunch of (eventually) unused arguments. Makes span passing to debuginfo explicit, instead of relying on the (usually incorrect) spans held in the contexts. Closes #1439 | ||||
| 2012-01-27 | Use the method name 'unary-' for overloading negation | Marijn Haverbeke | -2/+6 | |
| It's less likely to clash with something than 'neg'. Issue #1520 | ||||
| 2012-01-26 | rustc: Add pprust::res_to_str | Brian Anderson | -8/+41 | |
| 2012-01-26 | Remove the --no-core command-line option | Brian Anderson | -3/+1 | |
| It is superceeded by the #[no_core] attribute | ||||
| 2012-01-26 | rustc: Switch the --no-core switch to a #[no_core] attribute | Brian Anderson | -8/+15 | |
| 2012-01-26 | rustc: Make core injection a timed pass | Brian Anderson | -1/+3 | |
| It's not much of a pass, but lets be consistent | ||||
| 2012-01-26 | rustc: Move core injection to its own module | Brian Anderson | -24/+38 | |
| 2012-01-26 | Make re-exporting of impls work | Marijn Haverbeke | -111/+135 | |
| Closes #1438 | ||||
| 2012-01-26 | Use operator names for operator methods | Marijn Haverbeke | -30/+31 | |
| The methods used to implement operators now simply use the name of the operator itself, except for unary -, which is called min to not clash with binary -. Index is called []. Closes #1520 | ||||
| 2012-01-26 | Fix small bug in iface self types | Marijn Haverbeke | -1/+3 | |
| Issue #1661 | ||||
| 2012-01-26 | Allow operator overloading of the indexing operator | Marijn Haverbeke | -56/+82 | |
| The method `op_index` (which takes a single argument) is used for this. Issue #1520 | ||||
