diff options
| author | Steven Fackler <sfackler@gmail.com> | 2014-03-02 15:26:39 -0800 |
|---|---|---|
| committer | Steven Fackler <sfackler@gmail.com> | 2014-03-02 15:26:39 -0800 |
| commit | 4c2353adee4094ebcd99653ef168d607fe843144 (patch) | |
| tree | 69977673d908019d6025c9ea7a1af535864064c6 /src/libsyntax/ext | |
| parent | 51233c52199241f95679f961eda77da03943681b (diff) | |
| download | rust-4c2353adee4094ebcd99653ef168d607fe843144.tar.gz rust-4c2353adee4094ebcd99653ef168d607fe843144.zip | |
Make visible types public in rustc
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/expand.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs index b162e17f53d..d8b4334c867 100644 --- a/src/libsyntax/ext/expand.rs +++ b/src/libsyntax/ext/expand.rs @@ -660,7 +660,7 @@ fn expand_non_macro_stmt(s: &Stmt, fld: &mut MacroExpander) // from a given thingy and puts them in a mutable // array (passed in to the traversal) #[deriving(Clone)] -struct NewNameFinderContext { +pub struct NewNameFinderContext { ident_accumulator: Vec<ast::Ident> , } @@ -748,7 +748,7 @@ pub fn expand_block_elts(b: &Block, fld: &mut MacroExpander) -> P<Block> { }) } -struct IdentRenamer<'a> { +pub struct IdentRenamer<'a> { renames: &'a mut RenameList, } |
