| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-07-28 | Change macro syntax to accept a single expr, not a sequence of exprs. | Paul Stansifer | -1/+5 | |
| 2011-07-27 | Fix damage done by the pretty-printer | Marijn Haverbeke | -3/+3 | |
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -256/+226 | |
| 2011-07-26 | Remove all uses of tuples from the compiler and stdlib | Marijn Haverbeke | -8/+9 | |
| 2011-07-11 | rustc: Implement explicit global scope resolution via leading "::"; add a ↵ | Patrick Walton | -1/+1 | |
| test case | ||||
| 2011-07-10 | Make #fmt work from inside std. Issue #175 | Brian Anderson | -8/+12 | |
| At long last, this patch makes #fmt usable from inside the standard library. The way it does it us very hackish, but at least it works now. | ||||
| 2011-07-07 | rustc: Change lots of AST nodes to use interior vectors | Patrick Walton | -14/+15 | |
| 2011-07-06 | rustc: Make AST paths use interior vectors | Patrick Walton | -6/+5 | |
| 2011-07-06 | rustc: Revert the conversion to interior vectors due to heap corruption | Patrick Walton | -5/+6 | |
| 2011-07-06 | rustc: Make AST paths use interior vectors | Patrick Walton | -6/+5 | |
| 2011-07-05 | Move everything syntax-related to syntax/, break deps on rest of compiler | Marijn Haverbeke | -0/+372 | |
| 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. | ||||
