diff options
| author | bors <bors@rust-lang.org> | 2015-02-28 13:49:35 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-02-28 13:49:35 +0000 |
| commit | 8a69110c3b1122596ddc8999bb2403a5777bb8ed (patch) | |
| tree | 9fb065fb1a4875074ca1a9795c0136d0f44da2a3 /src/test | |
| parent | 6f8d83140618721e7b72a78f2e53a08e71e1d4cb (diff) | |
| parent | 077595943193ed8f0ae81e93a8e06781f79351ec (diff) | |
| download | rust-8a69110c3b1122596ddc8999bb2403a5777bb8ed.tar.gz rust-8a69110c3b1122596ddc8999bb2403a5777bb8ed.zip | |
Auto merge of #22895 - Manishearth:rollup, r=Manishearth
r? @Manishearth
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs | 7 | ||||
| -rw-r--r-- | src/test/auxiliary/macro_crate_test.rs | 6 | ||||
| -rw-r--r-- | src/test/auxiliary/plugin_args.rs | 4 | ||||
| -rw-r--r-- | src/test/auxiliary/roman_numerals.rs | 4 | ||||
| -rw-r--r-- | src/test/auxiliary/syntax_extension_with_dll_deps_2.rs | 2 | ||||
| -rw-r--r-- | src/test/parse-fail/obsolete-closure-kind.rs | 18 |
6 files changed, 30 insertions, 11 deletions
diff --git a/src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs b/src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs index bb57b4a98bb..f5a9063e1de 100644 --- a/src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs +++ b/src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs @@ -19,7 +19,8 @@ extern crate rustc; use syntax::ast; use syntax::codemap; -use syntax::ext::base::{ExtCtxt, MacResult, MacItems}; +use syntax::ext::base::{ExtCtxt, MacResult, MacEager}; +use syntax::util::small_vector::SmallVector; use rustc::plugin::Registry; #[plugin_registrar] @@ -28,8 +29,8 @@ pub fn plugin_registrar(reg: &mut Registry) { } fn expand(cx: &mut ExtCtxt, _: codemap::Span, _: &[ast::TokenTree]) -> Box<MacResult+'static> { - MacItems::new(vec![ + MacEager::items(SmallVector::many(vec![ quote_item!(cx, struct Struct1;).unwrap(), quote_item!(cx, struct Struct2;).unwrap() - ].into_iter()) + ])) } diff --git a/src/test/auxiliary/macro_crate_test.rs b/src/test/auxiliary/macro_crate_test.rs index d545a42ae19..01bfbd3dbce 100644 --- a/src/test/auxiliary/macro_crate_test.rs +++ b/src/test/auxiliary/macro_crate_test.rs @@ -47,7 +47,7 @@ fn expand_make_a_1(cx: &mut ExtCtxt, sp: Span, tts: &[TokenTree]) if !tts.is_empty() { cx.span_fatal(sp, "make_a_1 takes no arguments"); } - MacExpr::new(quote_expr!(cx, 1)) + MacEager::expr(quote_expr!(cx, 1)) } // See Issue #15750 @@ -57,7 +57,7 @@ fn expand_identity(cx: &mut ExtCtxt, _span: Span, tts: &[TokenTree]) let mut parser = parse::new_parser_from_tts(cx.parse_sess(), cx.cfg(), tts.to_vec()); let expr = parser.parse_expr(); - MacExpr::new(quote_expr!(&mut *cx, $expr)) + MacEager::expr(quote_expr!(&mut *cx, $expr)) } fn expand_into_foo(cx: &mut ExtCtxt, sp: Span, attr: &MetaItem, it: P<Item>) @@ -114,7 +114,7 @@ fn expand_forged_ident(cx: &mut ExtCtxt, sp: Span, tts: &[TokenTree]) -> Box<Mac let mut parser = new_parser_from_tts(parse_sess, cfg, tt); parser.parse_expr() }; - MacExpr::new(expr) + MacEager::expr(expr) } pub fn foo() {} diff --git a/src/test/auxiliary/plugin_args.rs b/src/test/auxiliary/plugin_args.rs index d0ab944813a..1775bbf4af2 100644 --- a/src/test/auxiliary/plugin_args.rs +++ b/src/test/auxiliary/plugin_args.rs @@ -20,7 +20,7 @@ use std::borrow::ToOwned; use syntax::ast; use syntax::codemap::Span; use syntax::ext::build::AstBuilder; -use syntax::ext::base::{TTMacroExpander, ExtCtxt, MacResult, MacExpr, NormalTT}; +use syntax::ext::base::{TTMacroExpander, ExtCtxt, MacResult, MacEager, NormalTT}; use syntax::parse::token; use syntax::print::pprust; use syntax::ptr::P; @@ -38,7 +38,7 @@ impl TTMacroExpander for Expander { let args = self.args.iter().map(|i| pprust::meta_item_to_string(&*i)) .collect::<Vec<_>>().connect(", "); let interned = token::intern_and_get_ident(&args[..]); - MacExpr::new(ecx.expr_str(sp, interned)) + MacEager::expr(ecx.expr_str(sp, interned)) } } diff --git a/src/test/auxiliary/roman_numerals.rs b/src/test/auxiliary/roman_numerals.rs index e05aa16ba5f..e5c42111105 100644 --- a/src/test/auxiliary/roman_numerals.rs +++ b/src/test/auxiliary/roman_numerals.rs @@ -19,7 +19,7 @@ extern crate rustc; use syntax::codemap::Span; use syntax::parse::token; use syntax::ast::{TokenTree, TtToken}; -use syntax::ext::base::{ExtCtxt, MacResult, DummyResult, MacExpr}; +use syntax::ext::base::{ExtCtxt, MacResult, DummyResult, MacEager}; use syntax::ext::build::AstBuilder; // trait for expr_usize use rustc::plugin::Registry; @@ -61,7 +61,7 @@ fn expand_rn(cx: &mut ExtCtxt, sp: Span, args: &[TokenTree]) } } - MacExpr::new(cx.expr_usize(sp, total)) + MacEager::expr(cx.expr_usize(sp, total)) } #[plugin_registrar] diff --git a/src/test/auxiliary/syntax_extension_with_dll_deps_2.rs b/src/test/auxiliary/syntax_extension_with_dll_deps_2.rs index 7a24dd76f32..07f3b863af8 100644 --- a/src/test/auxiliary/syntax_extension_with_dll_deps_2.rs +++ b/src/test/auxiliary/syntax_extension_with_dll_deps_2.rs @@ -30,5 +30,5 @@ pub fn plugin_registrar(reg: &mut Registry) { fn expand_foo(cx: &mut ExtCtxt, sp: Span, tts: &[TokenTree]) -> Box<MacResult+'static> { let answer = other::the_answer(); - MacExpr::new(quote_expr!(cx, $answer)) + MacEager::expr(quote_expr!(cx, $answer)) } diff --git a/src/test/parse-fail/obsolete-closure-kind.rs b/src/test/parse-fail/obsolete-closure-kind.rs new file mode 100644 index 00000000000..89134e806a7 --- /dev/null +++ b/src/test/parse-fail/obsolete-closure-kind.rs @@ -0,0 +1,18 @@ +// Copyright 2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// Test that we generate obsolete syntax errors around usages of closure kinds: `|:|`, `|&:|` and +// `|&mut:|`. + +fn main() { + let a = |:| {}; //~ ERROR obsolete syntax: `:`, `&mut:`, or `&:` + let a = |&:| {}; //~ ERROR obsolete syntax: `:`, `&mut:`, or `&:` + let a = |&mut:| {}; //~ ERROR obsolete syntax: `:`, `&mut:`, or `&:` +} |
