| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-03-02 | Move src/comp to src/rustc | Graydon Hoare | -526/+0 | |
| 2012-03-02 | core: Remove _mut functions from vec | Brian Anderson | -3/+3 | |
| Instead, use vec::to_mut/from_mut to transform vectors in place as needed. | ||||
| 2012-02-23 | (core::str) remove len_bytes alias | Kevin Cantu | -1/+1 | |
| 2012-02-23 | (core::str) mostly rename len -> len_chars | Kevin Cantu | -1/+1 | |
| 2012-02-12 | (core::str) rename byte_len -> len_bytes and rename char_len -> len | Kevin Cantu | -1/+1 | |
| 2012-02-09 | Remove some pointless imports | Marijn Haverbeke | -1/+0 | |
| 2012-01-21 | issue #1352: change param order on vec::init_elt, putting block in final ↵ | Graham Fawcett | -3/+3 | |
| position. To match the init_fn() and init_fn_mut() changes. | ||||
| 2012-01-19 | rustc: ";" to "," in enums | Patrick Walton | -3/+3 | |
| 2012-01-19 | rustc: "tag" -> "enum" | Patrick Walton | -3/+3 | |
| 2012-01-18 | Remove '.' after nullary tags in patterns | Tim Chevalier | -10/+10 | |
| Does what it says on the tin. The next commit will remove support for this syntax. | ||||
| 2012-01-13 | Remove all remaining uses of objs from the compiler | Marijn Haverbeke | -156/+155 | |
| 2012-01-11 | Major clean-up of std::io | Marijn Haverbeke | -0/+1 | |
| Use ifaces instead of objs, stop wrapping everything in two (or three) layers of no-value-added indirection, and remove some of the more pointless/outdated idioms from the code. | ||||
| 2011-12-22 | Register new snapshots, purge log_err and log_full in favour of log(...). | Graydon Hoare | -1/+1 | |
| 2011-12-22 | Merge all 3 log syntaxes, tidy up residual misuses. | Graydon Hoare | -6/+6 | |
| 2011-12-22 | Register snapshots and switch logging over to use of log_full or #error / ↵ | Graydon Hoare | -22/+22 | |
| #debug. | ||||
| 2011-12-13 | Copy first batch of material from libstd to libcore. | Graydon Hoare | -1/+2 | |
| 2011-11-17 | remove compile-command from local variable blocks | Niko Matsakis | -1/+0 | |
| 2011-09-12 | Factor imports mindlessly. | Graydon Hoare | -3/+1 | |
| 2011-09-12 | Reformat for new mode syntax, step 1 | Marijn Haverbeke | -6/+6 | |
| Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit. | ||||
| 2011-09-02 | Reformat. Issue #855 | Brian Anderson | -32/+29 | |
| 2011-09-01 | Convert all uses of #ifmt to #fmt. Issue #855 | Brian Anderson | -19/+19 | |
| 2011-09-01 | Rename std::istr to std::str. Issue #855 | Brian Anderson | -2/+2 | |
| 2011-09-01 | Remove std::str. Issue #855 | Brian Anderson | -1/+0 | |
| 2011-08-31 | Convert uses of #fmt to #ifmt. Issue #855 | Brian Anderson | -22/+20 | |
| 2011-08-27 | Convert pretty-printer to istrs. Issue #855 | Brian Anderson | -19/+24 | |
| 2011-08-27 | Convert std::io to istrs. Issue #855 | Brian Anderson | -4/+4 | |
| 2011-08-20 | Reformat | Brian Anderson | -52/+49 | |
| This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[] | ||||
| 2011-08-16 | Rename std::ivec to std::vec | Brian Anderson | -9/+9 | |
| 2011-08-12 | Rename std::ioivec to std::io | Brian Anderson | -3/+3 | |
| 2011-08-09 | Port the compiler to the ivec type [T] syntax. | Erick Tryzelaar | -9/+9 | |
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -231/+222 | |
| 2011-07-26 | Handle hardbreaks at bol slightly better, including break_offset calls (tuck ↵ | Graydon Hoare | -1/+11 | |
| offset into previous hardbreak). | ||||
| 2011-07-15 | rustc: Remove a bunch of exterior vectors | Patrick Walton | -19/+19 | |
| 2011-07-14 | rustc: Move much of metadata reading over to interior vectors | Patrick Walton | -3/+3 | |
| 2011-07-05 | Move everything syntax-related to syntax/, break deps on rest of compiler | Marijn Haverbeke | -0/+532 | |
| src/comp/syntax is currently just a sub-module of rustc, but it will, in the near future, be its own crate. This includes: - The AST data structure - The parser - The pretty-printer - Visit, walk, and fold - The syntax extension system - Some utility stuff that should be in the stdlib* *) Stdlib extensions currently require a snapshot before they can be used, and the win build is very broken right now. This is temporary and will be cleaned up when one of those problems goes away. A lot of code was moved by this patch, mostly towards a more organized layout. Some package paths did get longer, and I guess the new layout will take some getting used to. Sorry about that! Please try not to re-introduce any dependencies in syntax/ on any of the other src/comp/ subdirs. | ||||
