1
1
use crate :: ast;
2
- use crate :: ast:: NodeId ;
3
2
use crate :: ext:: mbe:: macro_parser;
4
3
use crate :: ext:: mbe:: { TokenTree , KleeneOp , KleeneToken , SequenceRepetition , Delimited } ;
5
- use crate :: feature_gate:: Features ;
6
4
use crate :: parse:: token:: { self , Token } ;
7
5
use crate :: parse:: ParseSess ;
8
6
use crate :: print:: pprust;
9
7
use crate :: symbol:: kw;
10
8
use crate :: tokenstream;
11
9
12
- use syntax_pos:: { edition :: Edition , Span } ;
10
+ use syntax_pos:: Span ;
13
11
14
12
use rustc_data_structures:: sync:: Lrc ;
15
- use std:: iter:: Peekable ;
16
13
17
14
/// Takes a `tokenstream::TokenStream` and returns a `Vec<self::TokenTree>`. Specifically, this
18
15
/// takes a generic `TokenStream`, such as is used in the rest of the compiler, and returns a
@@ -39,17 +36,13 @@ pub(super) fn parse(
39
36
input : tokenstream:: TokenStream ,
40
37
expect_matchers : bool ,
41
38
sess : & ParseSess ,
42
- features : & Features ,
43
- attrs : & [ ast:: Attribute ] ,
44
- edition : Edition ,
45
- macro_node_id : NodeId ,
46
39
) -> Vec < TokenTree > {
47
40
// Will contain the final collection of `self::TokenTree`
48
41
let mut result = Vec :: new ( ) ;
49
42
50
43
// For each token tree in `input`, parse the token into a `self::TokenTree`, consuming
51
44
// additional trees if need be.
52
- let mut trees = input. trees ( ) . peekable ( ) ;
45
+ let mut trees = input. trees ( ) ;
53
46
while let Some ( tree) = trees. next ( ) {
54
47
// Given the parsed tree, if there is a metavar and we are expecting matchers, actually
55
48
// parse out the matcher (i.e., in `$id:ident` this would parse the `:` and `ident`).
@@ -58,10 +51,6 @@ pub(super) fn parse(
58
51
& mut trees,
59
52
expect_matchers,
60
53
sess,
61
- features,
62
- attrs,
63
- edition,
64
- macro_node_id,
65
54
) ;
66
55
match tree {
67
56
TokenTree :: MetaVar ( start_sp, ident) if expect_matchers => {
@@ -109,13 +98,9 @@ pub(super) fn parse(
109
98
/// unstable features or not.
110
99
fn parse_tree (
111
100
tree : tokenstream:: TokenTree ,
112
- trees : & mut Peekable < impl Iterator < Item = tokenstream:: TokenTree > > ,
101
+ trees : & mut impl Iterator < Item = tokenstream:: TokenTree > ,
113
102
expect_matchers : bool ,
114
103
sess : & ParseSess ,
115
- features : & Features ,
116
- attrs : & [ ast:: Attribute ] ,
117
- edition : Edition ,
118
- macro_node_id : NodeId ,
119
104
) -> TokenTree {
120
105
// Depending on what `tree` is, we could be parsing different parts of a macro
121
106
match tree {
@@ -135,10 +120,6 @@ fn parse_tree(
135
120
tts. into ( ) ,
136
121
expect_matchers,
137
122
sess,
138
- features,
139
- attrs,
140
- edition,
141
- macro_node_id,
142
123
) ;
143
124
// Get the Kleene operator and optional separator
144
125
let ( separator, kleene) = parse_sep_and_kleene_op ( trees, span. entire ( ) , sess) ;
@@ -192,10 +173,6 @@ fn parse_tree(
192
173
tts. into ( ) ,
193
174
expect_matchers,
194
175
sess,
195
- features,
196
- attrs,
197
- edition,
198
- macro_node_id,
199
176
) ,
200
177
} ) ,
201
178
) ,
@@ -244,7 +221,7 @@ fn parse_kleene_op(
244
221
/// operator and separator, then a tuple with `(separator, KleeneOp)` is returned. Otherwise, an
245
222
/// error with the appropriate span is emitted to `sess` and a dummy value is returned.
246
223
fn parse_sep_and_kleene_op (
247
- input : & mut Peekable < impl Iterator < Item = tokenstream:: TokenTree > > ,
224
+ input : & mut impl Iterator < Item = tokenstream:: TokenTree > ,
248
225
span : Span ,
249
226
sess : & ParseSess ,
250
227
) -> ( Option < Token > , KleeneToken ) {
0 commit comments