summary refs log tree commit diff
path: root/src/libsyntax/ext/auto_serialize.rs
AgeCommit message (Collapse)AuthorLines
2012-10-07Remove the old serializers (needs snapshot)Erick Tryzelaar-718/+967
2012-10-07remove the old auto_serialize syntax extensionErick Tryzelaar-108/+1
2012-09-28rename iter2 to each2, make it follow iterator protocolNiko Matsakis-2/+2
2012-09-28demode vecNiko Matsakis-5/+5
2012-09-23Make it illegal to use modes in a fn signature with providingNiko Matsakis-4/+4
an explicit variable name. (Step one to changing the defaults) First step to #3535
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-5/+5
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-19Remove redundant hashmap constructor functions.Graydon Hoare-2/+2
2012-09-12Make moves in arguments explicit in libsyntax and rustcTim Chevalier-20/+21
2012-09-11Introduce auto adjustment table to subsume autoderef/autoref/borrowings.Niko Matsakis-1/+1
Fixes #3261 Fixes #3443
2012-09-10Convert 'import' to 'use'. Remove 'import' keyword.Brian Anderson-4/+2
2012-09-10Camel case std::serializationBrian Anderson-2/+2
2012-09-10Convert std::map to camel caseBrian Anderson-3/+3
2012-09-04Remove 'with'Brian Anderson-8/+8
2012-09-04libsyntax: "import" -> "use"Patrick Walton-4/+4
2012-08-26Camel case the option typeBrian Anderson-18/+18
2012-08-24Remove match checkTim Chevalier-2/+2
2012-08-23Remove purity from fn_decl and move it out to containing AST elements.Michael Sullivan-3/+3
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-5/+5
2012-08-22intern identifiersPaul Stansifer-33/+40
2012-08-14Make autoserialize not generate alt checksTim Chevalier-2/+11
2012-08-08Convert impls to new syntaxBrian Anderson-1/+1
2012-08-08rustc: Do some plumbing work in preparation for common fields in enumsPatrick Walton-2/+2
2012-08-08rustc: Do some plumbing work on nested enumsPatrick Walton-1/+3
2012-08-07rustc: Parse variant structs; add a trivial test casePatrick Walton-1/+1
2012-08-07rustc: Add stub support for struct variants to the ASTPatrick Walton-53/+69
2012-08-07syntax: Rename expr_alt to expr_matchBrian Anderson-2/+2
2012-08-06rustc: Parse and stub (broken) typechecking for bounded function typesPatrick Walton-6/+8
2012-08-06make `ref x` bindings produce region ptrs and fix various minor bugsNiko Matsakis-2/+4
we now detect inconsistent modes, binding names, and various other errors. typeck/trans integration is mostly done. borrowck not so much. more tests needed.
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-7/+7
2012-08-05Switch alts to use arrowsBrian Anderson-38/+38
2012-08-03rustc: Merge fn& and fn in favor of fn&.Patrick Walton-4/+4
This is a step on the way to moving the function "proto" sigil out front.
2012-07-31rustc: Parse by-reference pattern bindings with the "ref" keywordPatrick Walton-2/+4
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-13/+13
2012-07-17rustc: Implement and enforce instance coherencePatrick Walton-1/+28
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