diff options
| author | Eric Holk <eric.holk@gmail.com> | 2012-08-17 11:47:01 -0700 |
|---|---|---|
| committer | Eric Holk <eric.holk@gmail.com> | 2012-08-17 12:39:51 -0700 |
| commit | 7bae3449ce5113596c7cdbd1df3d27bdbd0cd777 (patch) | |
| tree | 7604a7a6b2a7767402eb69bec07ec1890909e974 /src/libsyntax | |
| parent | 9260b02daafe26025a99d44ddaeeb89e5f3382be (diff) | |
| download | rust-7bae3449ce5113596c7cdbd1df3d27bdbd0cd777.tar.gz rust-7bae3449ce5113596c7cdbd1df3d27bdbd0cd777.zip | |
Move select macro into another file, so it can be including in multiple tests.
Fixing long lines.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ext/pipes/ast_builder.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/pipes/ast_builder.rs b/src/libsyntax/ext/pipes/ast_builder.rs index da2f9d43373..39132fd0d59 100644 --- a/src/libsyntax/ext/pipes/ast_builder.rs +++ b/src/libsyntax/ext/pipes/ast_builder.rs @@ -69,7 +69,7 @@ trait ext_ctxt_ast_builder { span: span, +enum_definition: ast::enum_def, +ty_params: ~[ast::ty_param]) -> @ast::item; - fn item_enum(name: ident, span: span, + fn item_enum(name: ident, span: span, +enum_definition: ast::enum_def) -> @ast::item; fn variant(name: ident, span: span, +tys: ~[@ast::ty]) -> ast::variant; fn item_mod(name: ident, span: span, +items: ~[@ast::item]) -> @ast::item; |
