| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-07-06 | rustc: Move AST constraints to interior vectors | Patrick Walton | -4/+4 | |
| 2011-07-06 | rustc: Migrate core AST types to interior vectors | Patrick Walton | -4/+4 | |
| 2011-07-06 | rustc: Make AST tuple types use interior vectors | Patrick Walton | -1/+1 | |
| 2011-07-06 | rustc: Make meta items into interior vectors | Patrick Walton | -3/+3 | |
| 2011-07-06 | rustc: Move crate directives over to interior vectors | Patrick Walton | -2/+2 | |
| 2011-07-06 | rustc: Convert attribute in the AST to interior vectors | Patrick Walton | -5/+5 | |
| 2011-07-06 | rustc: Make AST paths use interior vectors | Patrick Walton | -5/+7 | |
| 2011-07-06 | Simplify AST for expr_anon_obj. | Lindsey Kuper | -1/+1 | |
| 2011-07-06 | rustc: Revert the conversion to interior vectors due to heap corruption | Patrick Walton | -16/+14 | |
| 2011-07-06 | Temp commit on the way to making meta_item into an interior vector | Patrick Walton | -3/+3 | |
| 2011-07-06 | rustc: Move crate directives over to interior vectors | Patrick Walton | -2/+2 | |
| 2011-07-06 | rustc: Convert attribute in the AST to interior vectors | Patrick Walton | -5/+5 | |
| 2011-07-06 | rustc: Make AST paths use interior vectors | Patrick Walton | -5/+7 | |
| 2011-07-05 | Change ast::meta_name_value to accept any literal, not just string | Brian Anderson | -1/+1 | |
| This isn't useful for much of anything yet, since metadata::encoder doesn't know how to handle the non-string variants. Issue #611 | ||||
| 2011-07-05 | Parse attributes for native items. Closes #609 | Brian Anderson | -0/+1 | |
| 2011-07-05 | Move everything syntax-related to syntax/, break deps on rest of compiler | Marijn Haverbeke | -0/+654 | |
| 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. | ||||
