about summary refs log tree commit diff
path: root/src/libsyntax/oldvisit.rs
AgeCommit message (Collapse)AuthorLines
2013-08-04rm obsolete `for` support from the compilerDaniel Micay-1/+1
2013-08-03remove obsolete `foreach` keywordDaniel Micay-39/+39
this has been replaced by `for`
2013-08-03replace all remaining `for` with `foreach` or `do`Daniel Micay-39/+39
2013-08-02librustc: Disallow "unsafe" for external functionsPatrick Walton-1/+1
2013-08-02librustc: Introduce a new visitor type based on traits and port syntax to it.Patrick Walton-0/+775
This is preparation for removing `@fn`. This does *not* use default methods yet, because I don't know whether they work. If they do, a forthcoming PR will use them. This also changes the precedence of `as`.