| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-04 | Remove arg vectors from main functions. Stop supporting them. | Brian Anderson | -27/+13 | |
| 2012-09-28 | demode vec | Niko Matsakis | -4/+4 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -2/+2 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+1 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | Revert "syntax: Make attributes sendable for rustdoc's benefit" | Brian Anderson | -1/+1 | |
| This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8. | ||||
| 2012-09-20 | syntax: Make attributes sendable for rustdoc's benefit | Brian Anderson | -1/+1 | |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -1/+1 | |
| 2012-09-12 | Promote 'const', 'copy', 'fn' to strict keywords | Brian Anderson | -1/+1 | |
| 2012-09-11 | Introduce auto adjustment table to subsume autoderef/autoref/borrowings. | Niko Matsakis | -2/+2 | |
| Fixes #3261 Fixes #3443 | ||||
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -1/+1 | |
| 2012-09-04 | std: Convert test to camel case | Brian Anderson | -1/+1 | |
| 2012-09-04 | Remove 'with' | Brian Anderson | -3/+3 | |
| 2012-09-04 | rustc: "import" -> "use" | Patrick Walton | -9/+9 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -1/+4 | |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -2/+2 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -11/+11 | |
| 2012-08-25 | Fix more unused variable warnings | Brian Anderson | -1/+1 | |
| 2012-08-23 | Remove purity from fn_decl and move it out to containing AST elements. | Michael Sullivan | -8/+5 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -9/+9 | |
| 2012-08-22 | intern identifiers | Paul Stansifer | -24/+35 | |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -2/+2 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -1/+1 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -4/+4 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -8/+8 | |
| 2012-08-01 | Convert ret to return | Brian Anderson | -16/+16 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -6/+6 | |
| 2012-07-14 | remove typestate from code, tests, and docs | Niko Matsakis | -6/+3 | |
| 2012-07-14 | Tear out ty_str and ty_vec. | Michael Sullivan | -3/+3 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -23/+23 | |
| #2907. | ||||
| 2012-07-13 | Change (hopefully) all of the code that generates strs asts to produce ~strs. | Michael Sullivan | -6/+15 | |
| 2012-07-13 | Support prefix notation for vstore strings. Closes #2906. | Michael Sullivan | -16/+19 | |
| 2012-07-12 | Obliterate the callee_id hack | Tim Chevalier | -8/+20 | |
| Exprs that could be applications of overloaded operators (expr_unary, expr_binary, expr_index) relied on the previous node ID being "reserved" to carry extra typechecking info. This was incredibly error-prone. Fixed it; now all exprs have two node IDs (which will be wasted in some cases; future work could make this an option instead if the extra int field ends up being a performance problem). Closes #2804 | ||||
| 2012-07-09 | Allow folds to drop items. | Paul Stansifer | -1/+1 | |
| 2012-07-03 | Revert "Remove rule requiring non-nil block-style statements to be ↵ | Brian Anderson | -1/+1 | |
| semi-terminated" This reverts commit 0f5eaef5fb2443acd3ea67250c953839c3d04d38. | ||||
| 2012-07-03 | Remove rule requiring non-nil block-style statements to be semi-terminated | Brian Anderson | -1/+1 | |
| This is a subtle rule that no longer seems to be required. | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -6/+6 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -1/+1 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -37/+37 | |
| 2012-06-28 | Replaced almost all vector+ in rustc (#2719) | Eric Holk | -4/+5 | |
| Didn't update shape because the changes were causing segfaults. | ||||
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -40/+41 | |
| 2012-06-25 | When we cons up vector asts, generate evecs. | Michael Sullivan | -6/+16 | |
| 2012-06-21 | Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this. | Graydon Hoare | -5/+6 | |
| 2012-06-20 | Remove bind. Issue #2189 | Brian Anderson | -3/+3 | |
| 2012-06-13 | Box AST idents | Brian Anderson | -18/+18 | |
| 2012-06-06 | move test to dvec | Niko Matsakis | -7/+7 | |
| 2012-05-21 | remove mutable cycle from ast_fold | Niko Matsakis | -3/+3 | |
| 2012-05-17 | Comments only: annotate FIXMEs in front-end | Tim Chevalier | -1/+2 | |
| 2012-05-08 | Start parsing pub/priv on regular items | Marijn Haverbeke | -0/+3 | |
| Issue #1893 | ||||
| 2012-05-07 | make it illegal to implicitly capture mutable variables | Niko Matsakis | -1/+1 | |
| this is the final part of #1273 | ||||
| 2012-05-04 | new cap clause syntax | Niko Matsakis | -6/+1 | |
