| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-08-20 | Reformat | Brian Anderson | -67/+70 | |
| This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[] | ||||
| 2011-08-18 | More misc ivec->vec renaming | Brian Anderson | -1/+1 | |
| 2011-08-18 | Remove seq_kind from ast::expr_vec | Brian Anderson | -6/+6 | |
| 2011-08-18 | Remove or _-prefix all unused function arguments | Marijn Haverbeke | -9/+9 | |
| This should make the compilation process a bit less noisy. | ||||
| 2011-08-16 | Port the compiler to the expr foo::<T> syntax. | Erick Tryzelaar | -3/+3 | |
| 2011-08-16 | Port the compiler to foo<T> decl syntax. | Erick Tryzelaar | -2/+2 | |
| 2011-08-16 | Port the compiler to the typaram foo<T> syntax. | Erick Tryzelaar | -24/+24 | |
| 2011-08-16 | Rename std::ivec to std::vec | Brian Anderson | -22/+22 | |
| 2011-08-15 | The wonky for...in... whitespace was bothering me. Sorry! | Lindsey Kuper | -8/+8 | |
| 2011-08-15 | Use span stacks to track macro expansion for less troublesome error messages. | Paul Stansifer | -1/+6 | |
| 2011-08-15 | Allow `[a, b, ..., c]` transcription patterns in MBE. | Paul Stansifer | -24/+42 | |
| 2011-08-15 | Change `node_id`s when expanding, to avoid duplicates. | Paul Stansifer | -1/+4 | |
| 2011-08-15 | Add a layer of boxing as a hack; this code can segfault otherwise. | Paul Stansifer | -5/+6 | |
| 2011-08-15 | Check for nonconsistent macro names. | Paul Stansifer | -1/+11 | |
| 2011-08-12 | Remove the last remaining vec expressions in rustc | Brian Anderson | -3/+3 | |
| 2011-08-12 | Remove std::vec | Brian Anderson | -1/+0 | |
| 2011-08-12 | Hide even more exports from std::vec | Brian Anderson | -2/+0 | |
| 2011-08-12 | Remove vecs from simplext | Brian Anderson | -29/+21 | |
| 2011-08-09 | Port the compiler to the ivec type [T] syntax. | Erick Tryzelaar | -10/+10 | |
| 2011-08-02 | Allow patterns of the form `[a, b, c ...] to be matched and transcribed. | Paul Stansifer | -62/+80 | |
| 2011-07-29 | Remove unreachable statements | Marijn Haverbeke | -5/+5 | |
| 2011-07-28 | Change macro syntax to accept a single expr, not a sequence of exprs. | Paul Stansifer | -42/+31 | |
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -431/+414 | |
| 2011-07-26 | Oops, left whitespace. | Paul Stansifer | -1/+1 | |
| 2011-07-26 | Add basic support for blocks and types in macros. | Paul Stansifer | -7/+123 | |
| 2011-07-26 | Remove all uses of tuples from the compiler and stdlib | Marijn Haverbeke | -12/+10 | |
| 2011-07-25 | Rename the block type to be blk also. Sorry. | Michael Sullivan | -2/+2 | |
| 2011-07-22 | Implement Macro By Example. | Paul Stansifer | -179/+546 | |
| 2011-07-13 | Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases. | Graydon Hoare | -18/+18 | |
| 2011-07-11 | Add elipses, reorganize the macro components into their own AST node. | Paul Stansifer | -32/+44 | |
| 2011-07-11 | Move macro expansion to a separate phase, change macro syntax, and add ↵ | Paul Stansifer | -74/+198 | |
| parse_sess to session. | ||||
| 2011-07-07 | rustc: Change lots of AST nodes to use interior vectors | Patrick Walton | -10/+11 | |
| 2011-07-06 | rustc: Make AST paths use interior vectors | Patrick Walton | -2/+4 | |
| 2011-07-06 | rustc: Revert the conversion to interior vectors due to heap corruption | Patrick Walton | -4/+2 | |
| 2011-07-06 | rustc: Make AST paths use interior vectors | Patrick Walton | -2/+4 | |
| 2011-07-05 | Move everything syntax-related to syntax/, break deps on rest of compiler | Marijn Haverbeke | -0/+144 | |
| 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. | ||||
