about summary refs log tree commit diff
path: root/src/libsyntax/ext/auto_serialize.rs
AgeCommit message (Collapse)AuthorLines
2012-07-14remove typestate from code, tests, and docsNiko Matsakis-14/+3
2012-07-14Get rid of ast::ty_vstore, which was only used for fixed length.Michael Sullivan-15/+4
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-31/+31
#2907.
2012-07-13Change (hopefully) all of the code that generates strs asts to produce ~strs.Michael Sullivan-3/+7
2012-07-13Support prefix notation for vstore strings. Closes #2906.Michael Sullivan-13/+13
2012-07-12Obliterate the callee_id hackTim Chevalier-1/+2
Exprs that could be applications of overloaded operators (expr_unary, expr_binary, expr_index) relied on the previous node ID being "reserved" to carry extra typechecking info. This was incredibly error-prone. Fixed it; now all exprs have two node IDs (which will be wasted in some cases; future work could make this an option instead if the extra int field ends up being a performance problem). Closes #2804
2012-07-12Accept prefix notation for writing the types of str/~ and friends.Michael Sullivan-2/+23
2012-07-12Merge branch 'rt-changes' into incomingMichael Sullivan-2/+10
2012-07-12Handle autoserializing of str/~.Michael Sullivan-2/+10
2012-07-11infer when types are region parameterized rather than requiring /&Niko Matsakis-2/+2
- removes various fields from various variants in the AST - also update tests not to use this notation
2012-07-05Comments only: change TODOs to FIXMEs and annotate themTim Chevalier-1/+1
2012-07-05Change 'iface' to 'trait' internally; parse `trait` as `iface` synonymLindsey Kuper-2/+2
2012-07-03Revert "Remove rule requiring non-nil block-style statements to be ↵Brian Anderson-1/+1
semi-terminated" This reverts commit 0f5eaef5fb2443acd3ea67250c953839c3d04d38.
2012-07-03Remove rule requiring non-nil block-style statements to be semi-terminatedBrian Anderson-1/+1
This is a subtle rule that no longer seems to be required.
2012-07-01Convert to new closure syntaxBrian Anderson-41/+41
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-20/+22
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-102/+102
2012-06-28replace more vector + (issue #2719)Eric Holk-8/+9
2012-06-27Replace more vector + (issue #2719)Eric Holk-25/+31
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-88/+93
2012-06-22Serialize out uniq vecs typesMichael Sullivan-8/+11
2012-06-20Remove bind. Issue #2189Brian Anderson-5/+5
2012-06-13Box AST identsBrian Anderson-36/+39
2012-05-31Rename librustsyntax to libsyntaxKevin Cantu-0/+864
Per issue #2418.