about summary refs log tree commit diff
path: root/src/comp/syntax/util
AgeCommit message (Collapse)AuthorLines
2011-08-23Add kind-checking for assign-op, copy, ret, be, fail exprs. Fix caught ↵Graydon Hoare-1/+1
kinding-violations in rustc and libstd.
2011-08-20ReformatBrian Anderson-4/+4
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-16Port the compiler to the expr foo::<T> syntax.Erick Tryzelaar-2/+2
2011-08-16Port the compiler to foo<T> decl syntax.Erick Tryzelaar-5/+5
2011-08-16Port the compiler to the typaram foo<T> syntax.Erick Tryzelaar-7/+7
2011-08-16Rename std::ivec to std::vecBrian Anderson-3/+3
2011-08-09Port the compiler to the ivec type [T] syntax.Erick Tryzelaar-1/+1
2011-08-04rustc: Generate shapesPatrick Walton-0/+4
2011-07-29Enable kind checking on typarams, fix kind constraints in library and comp.Graydon Hoare-2/+2
2011-07-27Reformat for new syntaxMarijn Haverbeke-17/+17
2011-07-06rustc: Move the interner over to interior vectorsPatrick Walton-6/+6
2011-07-06rustc: Revert the conversion to interior vectors due to heap corruptionPatrick Walton-6/+6
2011-07-06rustc: Move the interner over to interior vectorsPatrick Walton-6/+6
2011-07-05Move everything syntax-related to syntax/, break deps on rest of compilerMarijn Haverbeke-0/+35
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.