summary refs log tree commit diff
path: root/src/rustc/middle/astencode.rs
AgeCommit message (Collapse)AuthorLines
2012-07-09Allow folds to drop items.Paul Stansifer-2/+2
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-6/+6
2012-07-04Remove empty argument lists from do expressionsBen Striegel-50/+50
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-84/+84
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-84/+84
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-6/+6
2012-06-26Change 'native' and 'crust' to 'extern'.Graydon Hoare-5/+5
This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI.
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-6/+6
2012-06-21Move vector addition out of trans and into libcore.Eric Holk-182/+17
2012-06-20Remove bind. Issue #2189Brian Anderson-5/+5
2012-06-19first steps to autoderef on method callsNiko Matsakis-17/+14
2012-06-15Handle index expressions' callee IDs correctlyTim Chevalier-1/+1
Some code that handles unary and binary exprs' callee IDs was forgetting to handle the index expr case (since calls to user-defined index operators also have callee IDs). This was manifesting as an ICE in trans because when monomorphizing a function that had one of these operators in it (an index into a dvec, in the test case), the callee ID would be unbound to a type. Fixed it. Closes #2631.
2012-06-15Add the interner to parse_sess.Paul Stansifer-15/+1
2012-06-13Box AST identsBrian Anderson-4/+4
2012-06-12Handle class destructors correctly in metadataTim Chevalier-0/+16
This allows destructors to be inlined, which is necessary since classes can have both ty params and destructors.
2012-06-08remove alias analysis and replace with borrowckNiko Matsakis-9/+0
This reverts commit 7ef825bb607c4e934c92bd0b73ecbc4c24f3286b.
2012-06-07Revert "remove alias analysis and replace with borrowck"Brian Anderson-0/+9
18s perf regression compiling rustc with opts This reverts commit 7f6ee0ce0df8af4c21b065cb49b95079ae643f77.
2012-06-07remove alias analysis and replace with borrowckNiko Matsakis-9/+0
cc #2540
2012-06-07Comments only: annotate FIXMEsTim Chevalier-1/+0
2012-06-06Revert "Revert "Merge pull request #2516 from mozilla/incoming" due to failures"Tim Chevalier-9/+0
This reverts commit 9fae95860de510f6874810cf43efb83f101246ef.
2012-05-31allow mutable vectors and so forth to be used as immutable slicesNiko Matsakis-4/+17
2012-05-30Include capture clauses when generating metadata.Eric Holk-1/+5
This may fix the bug that's blocking Issue #2441.
2012-05-25Get rid of many implicit copies as a preliminary to Issue #2448.Michael Sullivan-1/+1
2012-05-25replace last_use with liveness infoNiko Matsakis-21/+13
2012-05-21rustc: Move ast_map to the syntax crateBrian Anderson-1/+2
2012-05-21rustc: Remove ast_map's session dependencyBrian Anderson-1/+2
2012-05-21remove mutable cycle from ast_foldNiko Matsakis-2/+2
2012-05-15get preservation of boxes working, at least in simple casesNiko Matsakis-0/+1
2012-05-14rustc: Break some of metadata's dependencies on sessionBrian Anderson-1/+2
2012-05-14rustc: Eliminate metadata's dependency on astencodeBrian Anderson-10/+24
2012-05-14rustc: Move astencode from metadata to middleBrian Anderson-0/+1100