diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-07-19 18:42:11 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-08-02 21:57:58 -0700 |
| commit | 887c65697056b23be69b9b11f41637d07327626e (patch) | |
| tree | 13c8a942849f5193404e3cb6826bcdd6736f1ab1 /src/libsyntax/syntax.rs | |
| parent | efd6eafeb4f734ef7883afadb4e50099430c76f2 (diff) | |
| download | rust-887c65697056b23be69b9b11f41637d07327626e.tar.gz rust-887c65697056b23be69b9b11f41637d07327626e.zip | |
librustc: Introduce a new visitor type based on traits and port syntax to it.
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`.
Diffstat (limited to 'src/libsyntax/syntax.rs')
| -rw-r--r-- | src/libsyntax/syntax.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/syntax.rs b/src/libsyntax/syntax.rs index 4d604faa6e1..e0f5aa848a2 100644 --- a/src/libsyntax/syntax.rs +++ b/src/libsyntax/syntax.rs @@ -43,6 +43,7 @@ pub mod ast_util; pub mod ast_map; pub mod visit; pub mod fold; +pub mod oldvisit; pub mod parse; |
