about summary refs log tree commit diff
path: root/src/comp/syntax/util/interner.rs
AgeCommit message (Collapse)AuthorLines
2012-03-02Move src/comp to src/rustcGraydon Hoare-39/+0
2012-02-09Remove some pointless importsMarijn Haverbeke-2/+0
2012-01-18Remove '.' after nullary tags in patternsTim Chevalier-1/+1
Does what it says on the tin. The next commit will remove support for this syntax.
2012-01-05Switch to new param kind bound syntaxMarijn Haverbeke-3/+3
And remove support for the old syntax
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-2/+3
2011-11-18Update stdlib, compiler, and tests to new kind systemMarijn Haverbeke-3/+3
This involved adding 'copy' to more generics than I hoped, but an experiment with making it implicit showed that that way lies madness -- unless enforced, you will not remember to mark functions that don't copy as not requiring copyable kind. Issue #1177
2011-11-10Cleanup unused importsHaitao Li-1/+1
2011-10-25Update our code to new type parameter kind syntaxMarijn Haverbeke-3/+3
Closes #1067
2011-09-24Reduce and clarify abuse of 'pure' in internerJesse Ruderman-3/+9
2011-09-24Mark some fns as pure so type_is_unique_box doesn't need to be uncheckedJesse Ruderman-2/+2
2011-09-12Factor imports mindlessly.Graydon Hoare-8/+3
2011-09-12Reformat for new mode syntax, step 1Marijn Haverbeke-3/+3
Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit.
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.