diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-01-29 14:41:40 -0800 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-01-29 14:42:23 -0800 |
| commit | b07059056463272788042a263b6cf8eb8be2533a (patch) | |
| tree | 732c24f16156ae8302dde8a54de48aa433cb1803 /src/libsyntax/ext/pipes/mod.rs | |
| parent | a80a65b3b7affa9b070785bf2dd34a25aea3932a (diff) | |
| download | rust-b07059056463272788042a263b6cf8eb8be2533a.tar.gz rust-b07059056463272788042a263b6cf8eb8be2533a.zip | |
libsyntax: De-export libsyntax. rs=deexporting
Diffstat (limited to 'src/libsyntax/ext/pipes/mod.rs')
| -rw-r--r-- | src/libsyntax/ext/pipes/mod.rs | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/libsyntax/ext/pipes/mod.rs b/src/libsyntax/ext/pipes/mod.rs index c84ab54af2b..8f0f00f42c0 100644 --- a/src/libsyntax/ext/pipes/mod.rs +++ b/src/libsyntax/ext/pipes/mod.rs @@ -56,17 +56,16 @@ use parse::parser::Parser; use core::option::None; -mod ast_builder; -mod parse_proto; -mod pipec; -mod proto; -mod check; -mod liveness; +pub mod ast_builder; +pub mod parse_proto; +pub mod pipec; +pub mod proto; +pub mod check; +pub mod liveness; -fn expand_proto(cx: ext_ctxt, _sp: span, id: ast::ident, - tt: ~[ast::token_tree]) -> base::MacResult -{ +pub fn expand_proto(cx: ext_ctxt, _sp: span, id: ast::ident, + tt: ~[ast::token_tree]) -> base::MacResult { let sess = cx.parse_sess(); let cfg = cx.cfg(); let tt_rdr = new_tt_reader(cx.parse_sess().span_diagnostic, |
