diff options
| author | Jared Roesch <roeschinc@gmail.com> | 2015-07-25 21:30:35 -0700 |
|---|---|---|
| committer | Jared Roesch <roeschinc@gmail.com> | 2015-08-04 16:05:06 -0700 |
| commit | ad5927870cd32c5feb7f42dc4bca4a1b21e61a0e (patch) | |
| tree | 99b26782437a2cedc1a6cf56fa8c97b926f2bdef /src/libsyntax/print/pprust.rs | |
| parent | 6afb8f58d18311109081cfaff2fa5a02948989c3 (diff) | |
| download | rust-ad5927870cd32c5feb7f42dc4bca4a1b21e61a0e.tar.gz rust-ad5927870cd32c5feb7f42dc4bca4a1b21e61a0e.zip | |
Add a macro invocation to the type AST
Reapplied the changes from https://github.com/freebroccolo/rust/commit/dc64b731d7f66c2b43d5e5e8c721be7bd3b59540 to a clean branch of master
Diffstat (limited to 'src/libsyntax/print/pprust.rs')
| -rw-r--r-- | src/libsyntax/print/pprust.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs index 6cfe85bc37e..17fa0922da9 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -734,6 +734,9 @@ impl<'a> State<'a> { ast::TyInfer => { try!(word(&mut self.s, "_")); } + ast::TyMac(ref m) => { + try!(self.print_mac(m, token::Paren)); + } } self.end() } |
