about summary refs log tree commit diff
path: root/src/comp/middle/alias.rs
AgeCommit message (Expand)AuthorLines
2011-09-13Make for loop alias-safeMarijn Haverbeke-38/+28
2011-09-13Apply implicit copying for unsafe references to alt patternsMarijn Haverbeke-45/+95
2011-09-12Factor imports mindlessly.Graydon Hoare-12/+4
2011-09-12Rename alias to reference in docs and error messagesMarijn Haverbeke-4/+5
2011-09-12Warn when inserting an implicit copy that may be expensiveMarijn Haverbeke-14/+51
2011-09-12Pretty-print for new arg-mode syntaxMarijn Haverbeke-2/+7
2011-09-12Reformat for new mode syntax, step 1Marijn Haverbeke-55/+62
2011-09-12Make the names of the arg mode tag reflect their (revised) meaningMarijn Haverbeke-3/+3
2011-09-12Pass all arguments by reference, make immut alias mode equiv to valueMarijn Haverbeke-70/+95
2011-09-02Rename ty_istr to ty_str. Issue #855Brian Anderson-1/+1
2011-09-02Reformat. Issue #855Brian Anderson-79/+91
2011-09-01Remove lots of estr code from rustc. Issue #855Brian Anderson-1/+1
2011-09-01Convert all uses of #ifmt to #fmt. Issue #855Brian Anderson-2/+2
2011-09-01Rename std::istr to std::str. Issue #855Brian Anderson-1/+1
2011-09-01Remove std::str. Issue #855Brian Anderson-1/+0
2011-09-01Remove misleading outdated comment in alias.rsMarijn Haverbeke-5/+1
2011-09-01Make alias analysis properly recognize closures in call positionMarijn Haverbeke-1/+1
2011-09-01Make resolve recognize upvarsMarijn Haverbeke-34/+11
2011-09-01Move mutability checking into its own pass.Marijn Haverbeke-275/+16
2011-09-01Store arg mode and objfield mutability in their defMarijn Haverbeke-5/+5
2011-09-01Clean up handling of restriction contexts in alias analysisMarijn Haverbeke-93/+94
2011-08-31Convert uses of #fmt to #ifmt. Issue #855Brian Anderson-6/+6
2011-08-30Stop relying on klunky hack in alias.rsMarijn Haverbeke-24/+37
2011-08-29Fix bug in mutable-local-markingMarijn Haverbeke-0/+1
2011-08-27Convert rustc::driver::session to istrs. Issue #855Brian Anderson-31/+31
2011-08-27Convert rustc::syntax::ast_util to istrs. Issue #855Brian Anderson-3/+5
2011-08-27Convert rustc::util to istrs. Issue #855Brian Anderson-3/+4
2011-08-27Convert ast::ident to istr. Issue #855Brian Anderson-1/+2
2011-08-22Move functions from syntax::ast to syntax::ast_utilBrian Anderson-11/+14
2011-08-22Drop arguments on the caller side, not the calleeMarijn Haverbeke-9/+15
2011-08-20ReformatBrian Anderson-124/+137
2011-08-18Change ast::ty_ivec, ty::ty_ivec to ty_vecBrian Anderson-2/+2
2011-08-18Remove ast::ty_vecBrian Anderson-8/+2
2011-08-18Remove or _-prefix all unused function argumentsMarijn Haverbeke-2/+2
2011-08-16Port the compiler to the expr foo::<T> syntax.Erick Tryzelaar-1/+1
2011-08-16Port the compiler to the typaram foo<T> syntax.Erick Tryzelaar-14/+14
2011-08-16Rename std::ivec to std::vecBrian Anderson-14/+14
2011-08-15The wonky for...in... whitespace was bothering me. Sorry!Lindsey Kuper-19/+19
2011-08-15Tuple fields are immutableMarijn Haverbeke-3/+3
2011-08-15Tuple types back, not constructable yetMarijn Haverbeke-0/+8
2011-08-10rustc: Add unique pointers to the set of types we supportPatrick Walton-0/+5
2011-08-09Port the compiler to the ivec type [T] syntax.Erick Tryzelaar-22/+22
2011-08-05Revert "rustc: Introduce the concept of inline to the AST"Patrick Walton-5/+3
2011-08-05rustc: Introduce the concept of inline to the ASTPatrick Walton-3/+5
2011-08-04Prohibit assignment to upvars in lambdas. Closes #805.Michael Sullivan-1/+23
2011-08-03Make ast::pat_bindings an iteratorMarijn Haverbeke-24/+3
2011-08-01Partially implement destructuring localsMarijn Haverbeke-36/+37
2011-07-28Thread kinds into the type system. Don't quite activate yet, since it breaks ...Graydon Hoare-1/+1
2011-07-27Don't allow globals or immutable locals to be passed by mut aliasMarijn Haverbeke-17/+39
2011-07-27Fix damage done by the pretty-printerMarijn Haverbeke-4/+3