about summary refs log tree commit diff
path: root/src/comp/syntax/ext
AgeCommit message (Expand)AuthorLines
2011-08-27Remove ast::identistr. Issue #855Brian Anderson-7/+6
2011-08-27Convert ast::ident to istr. Issue #855Brian Anderson-35/+36
2011-08-27Convert std::map::new_str_hash to istrs. Issue #855Brian Anderson-27/+43
2011-08-27Convert std::generic_os to istrs. Issue #855Brian Anderson-2/+5
2011-08-27Convert std::io to istrs. Issue #855Brian Anderson-1/+3
2011-08-27Convert std::int to istrs. Issue #855Brian Anderson-5/+13
2011-08-22Move functions from syntax::ast to syntax::ast_utilBrian Anderson-1/+1
2011-08-20ReformatBrian Anderson-135/+146
2011-08-18More misc ivec->vec renamingBrian Anderson-1/+1
2011-08-18Remove seq_kind from ast::expr_vecBrian Anderson-11/+11
2011-08-18Remove or _-prefix all unused function argumentsMarijn Haverbeke-14/+14
2011-08-16Port the compiler to the expr foo::<T> syntax.Erick Tryzelaar-10/+10
2011-08-16Port the compiler to foo<T> decl syntax.Erick Tryzelaar-2/+2
2011-08-16Port the compiler to the typaram foo<T> syntax.Erick Tryzelaar-35/+35
2011-08-16Rename std::ivec to std::vecBrian Anderson-35/+34
2011-08-16Continue migrating the std #fmt interface to ivecsBrian Anderson-1/+1
2011-08-15The wonky for...in... whitespace was bothering me. Sorry!Lindsey Kuper-13/+13
2011-08-15Use span stacks to track macro expansion for less troublesome error messages.Paul Stansifer-8/+23
2011-08-15Allow `[a, b, ..., c]` transcription patterns in MBE.Paul Stansifer-24/+42
2011-08-15Change `node_id`s when expanding, to avoid duplicates.Paul Stansifer-1/+4
2011-08-15Add a syntax extension to log syntax, for debugging macros.Paul Stansifer-3/+20
2011-08-15Add a layer of boxing as a hack; this code can segfault otherwise.Paul Stansifer-5/+6
2011-08-15Add backtraces for syntax problems.Paul Stansifer-64/+60
2011-08-15Check for nonconsistent macro names.Paul Stansifer-1/+11
2011-08-12Remove the last remaining vec expressions in rustcBrian Anderson-3/+3
2011-08-12Add an ivec interface to the #fmt library functionsBrian Anderson-4/+4
2011-08-12Remove std::vecBrian Anderson-2/+0
2011-08-12Hide even more exports from std::vecBrian Anderson-2/+0
2011-08-12Remove vecs from simplextBrian Anderson-29/+21
2011-08-12Begin removing vecs from #fmtBrian Anderson-9/+9
2011-08-09Port the compiler to the ivec type [T] syntax.Erick Tryzelaar-24/+24
2011-08-03Add #concat_idents[] and #ident_to_str[]Paul Stansifer-8/+53
2011-08-02Allow patterns of the form `[a, b, c ...] to be matched and transcribed.Paul Stansifer-62/+80
2011-07-29Remove unreachable statementsMarijn Haverbeke-9/+8
2011-07-28Change macro syntax to accept a single expr, not a sequence of exprs.Paul Stansifer-46/+43
2011-07-27Fix damage done by the pretty-printerMarijn Haverbeke-3/+3
2011-07-27Reformat for new syntaxMarijn Haverbeke-795/+739
2011-07-26Oops, left whitespace.Paul Stansifer-1/+1
2011-07-26Add basic support for blocks and types in macros.Paul Stansifer-7/+123
2011-07-26Remove tuple support from the compilerMarijn Haverbeke-1/+1
2011-07-26Remove all uses of tuples from the compiler and stdlibMarijn Haverbeke-23/+23
2011-07-25Rename the block type to be blk also. Sorry.Michael Sullivan-2/+2
2011-07-22Implement Macro By Example.Paul Stansifer-180/+564
2011-07-13Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases.Graydon Hoare-27/+27
2011-07-12rustc: Remove some interior vectors from typestate and some useless vec-relat...Patrick Walton-2/+0
2011-07-11Add elipses, reorganize the macro components into their own AST node.Paul Stansifer-51/+76
2011-07-11Move macro expansion to a separate phase, change macro syntax, and add parse_...Paul Stansifer-84/+276
2011-07-11rustc: Implement explicit global scope resolution via leading "::"; add a tes...Patrick Walton-1/+1
2011-07-10Make #fmt work from inside std. Issue #175Brian Anderson-10/+25
2011-07-07rustc: Change lots of AST nodes to use interior vectorsPatrick Walton-28/+31