Skip to content

Commit 1895bf7

Browse files
authored
Auto merge of #34908 - jseyfried:improve_tt_matchers, r=nrc
macros: Improve `tt` matchers Fixes #5846, fixes #22819. r? @nrc
2 parents f5d7952 + 4485502 commit 1895bf7

File tree

3 files changed

+37
-3
lines changed

3 files changed

+37
-3
lines changed

src/libsyntax/ext/tt/transcribe.rs

+13-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use syntax_pos::{Span, DUMMY_SP};
1414
use errors::{Handler, DiagnosticBuilder};
1515
use ext::tt::macro_parser::{NamedMatch, MatchedSeq, MatchedNonterminal};
1616
use parse::token::{DocComment, MatchNt, SubstNt};
17-
use parse::token::{Token, NtIdent, SpecialMacroVar};
17+
use parse::token::{Token, Interpolated, NtIdent, NtTT, SpecialMacroVar};
1818
use parse::token;
1919
use parse::lexer::TokenAndSpan;
2020
use tokenstream::{self, TokenTree};
@@ -278,9 +278,9 @@ pub fn tt_next_token(r: &mut TtReader) -> TokenAndSpan {
278278
}
279279
// FIXME #2887: think about span stuff here
280280
TokenTree::Token(sp, SubstNt(ident)) => {
281-
r.stack.last_mut().unwrap().idx += 1;
282281
match lookup_cur_matched(r, ident) {
283282
None => {
283+
r.stack.last_mut().unwrap().idx += 1;
284284
r.cur_span = sp;
285285
r.cur_tok = SubstNt(ident);
286286
return ret_val;
@@ -292,14 +292,24 @@ pub fn tt_next_token(r: &mut TtReader) -> TokenAndSpan {
292292
// (a) idents can be in lots of places, so it'd be a pain
293293
// (b) we actually can, since it's a token.
294294
MatchedNonterminal(NtIdent(ref sn)) => {
295+
r.stack.last_mut().unwrap().idx += 1;
295296
r.cur_span = sn.span;
296297
r.cur_tok = token::Ident(sn.node);
297298
return ret_val;
298299
}
300+
MatchedNonterminal(NtTT(ref tt)) => {
301+
r.stack.push(TtFrame {
302+
forest: TokenTree::Token(sp, Interpolated(NtTT(tt.clone()))),
303+
idx: 0,
304+
dotdotdoted: false,
305+
sep: None,
306+
});
307+
}
299308
MatchedNonterminal(ref other_whole_nt) => {
309+
r.stack.last_mut().unwrap().idx += 1;
300310
// FIXME(pcwalton): Bad copy.
301311
r.cur_span = sp;
302-
r.cur_tok = token::Interpolated((*other_whole_nt).clone());
312+
r.cur_tok = Interpolated((*other_whole_nt).clone());
303313
return ret_val;
304314
}
305315
MatchedSeq(..) => {

src/libsyntax/tokenstream.rs

+4
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ impl TokenTree {
135135
}
136136
TokenTree::Token(_, token::SpecialVarNt(..)) => 2,
137137
TokenTree::Token(_, token::MatchNt(..)) => 3,
138+
TokenTree::Token(_, token::Interpolated(Nonterminal::NtTT(..))) => 1,
138139
TokenTree::Delimited(_, ref delimed) => delimed.tts.len() + 2,
139140
TokenTree::Sequence(_, ref seq) => seq.tts.len(),
140141
TokenTree::Token(..) => 0,
@@ -197,6 +198,9 @@ impl TokenTree {
197198
TokenTree::Token(sp, token::Ident(kind))];
198199
v[index].clone()
199200
}
201+
(&TokenTree::Token(_, token::Interpolated(Nonterminal::NtTT(ref tt))), _) => {
202+
tt.clone().unwrap()
203+
}
200204
(&TokenTree::Sequence(_, ref seq), _) => seq.tts[index].clone(),
201205
_ => panic!("Cannot expand a token tree"),
202206
}
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![feature(rustc_attrs)]
12+
13+
macro_rules! foo {
14+
($x:tt) => (type Alias = $x<i32>;)
15+
}
16+
17+
foo!(Box);
18+
19+
#[rustc_error]
20+
fn main() {} //~ ERROR compilation successful

0 commit comments

Comments
 (0)