about summary refs log tree commit diff
path: root/src/comp/syntax/ext/fmt.rs
AgeCommit message (Collapse)AuthorLines
2011-07-28Change macro syntax to accept a single expr, not a sequence of exprs.Paul Stansifer-1/+5
2011-07-27Fix damage done by the pretty-printerMarijn Haverbeke-3/+3
2011-07-27Reformat for new syntaxMarijn Haverbeke-256/+226
2011-07-26Remove all uses of tuples from the compiler and stdlibMarijn Haverbeke-8/+9
2011-07-11rustc: Implement explicit global scope resolution via leading "::"; add a ↵Patrick Walton-1/+1
test case
2011-07-10Make #fmt work from inside std. Issue #175Brian 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-07rustc: Change lots of AST nodes to use interior vectorsPatrick Walton-14/+15
2011-07-06rustc: Make AST paths use interior vectorsPatrick Walton-6/+5
2011-07-06rustc: Revert the conversion to interior vectors due to heap corruptionPatrick Walton-5/+6
2011-07-06rustc: Make AST paths use interior vectorsPatrick Walton-6/+5
2011-07-05Move everything syntax-related to syntax/, break deps on rest of compilerMarijn 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.