@@ -23,7 +23,6 @@ use rustc_data_structures::sync::{self, Lrc};
23
23
use rustc_macros:: { Decodable , Encodable , HashStable_Generic } ;
24
24
use rustc_serialize:: { Decodable , Encodable } ;
25
25
use rustc_span:: { sym, Span , SpanDecoder , SpanEncoder , Symbol , DUMMY_SP } ;
26
- use smallvec:: { smallvec, SmallVec } ;
27
26
28
27
use std:: borrow:: Cow ;
29
28
use std:: { cmp, fmt, iter} ;
@@ -180,42 +179,33 @@ impl AttrTokenStream {
180
179
AttrTokenStream ( Lrc :: new ( tokens) )
181
180
}
182
181
183
- /// Converts this `AttrTokenStream` to a plain `TokenStream `.
182
+ /// Converts this `AttrTokenStream` to a plain `Vec<TokenTree> `.
184
183
/// During conversion, `AttrTokenTree::Attributes` get 'flattened'
185
184
/// back to a `TokenStream` of the form `outer_attr attr_target`.
186
185
/// If there are inner attributes, they are inserted into the proper
187
186
/// place in the attribute target tokens.
188
- pub fn to_tokenstream ( & self ) -> TokenStream {
189
- let trees: Vec < _ > = self
190
- . 0
191
- . iter ( )
192
- . flat_map ( |tree| match & tree {
187
+ pub fn to_token_trees ( & self ) -> Vec < TokenTree > {
188
+ let mut res = Vec :: with_capacity ( self . 0 . len ( ) ) ;
189
+ for tree in self . 0 . iter ( ) {
190
+ match tree {
193
191
AttrTokenTree :: Token ( inner, spacing) => {
194
- smallvec ! [ TokenTree :: Token ( inner. clone( ) , * spacing) ] . into_iter ( )
192
+ res . push ( TokenTree :: Token ( inner. clone ( ) , * spacing) ) ;
195
193
}
196
194
AttrTokenTree :: Delimited ( span, spacing, delim, stream) => {
197
- smallvec ! [ TokenTree :: Delimited (
195
+ res . push ( TokenTree :: Delimited (
198
196
* span,
199
197
* spacing,
200
198
* delim,
201
- stream. to_tokenstream( )
202
- ) , ]
203
- . into_iter ( )
199
+ TokenStream :: new ( stream. to_token_trees ( ) ) ,
200
+ ) )
204
201
}
205
202
AttrTokenTree :: Attributes ( data) => {
206
203
let idx = data
207
204
. attrs
208
205
. partition_point ( |attr| matches ! ( attr. style, crate :: AttrStyle :: Outer ) ) ;
209
206
let ( outer_attrs, inner_attrs) = data. attrs . split_at ( idx) ;
210
207
211
- let mut target_tokens: Vec < _ > = data
212
- . tokens
213
- . to_attr_token_stream ( )
214
- . to_tokenstream ( )
215
- . 0
216
- . iter ( )
217
- . cloned ( )
218
- . collect ( ) ;
208
+ let mut target_tokens = data. tokens . to_attr_token_stream ( ) . to_token_trees ( ) ;
219
209
if !inner_attrs. is_empty ( ) {
220
210
let mut found = false ;
221
211
// Check the last two trees (to account for a trailing semi)
@@ -251,17 +241,14 @@ impl AttrTokenStream {
251
241
"Failed to find trailing delimited group in: {target_tokens:?}"
252
242
) ;
253
243
}
254
- let mut flat: SmallVec < [ _ ; 1 ] > =
255
- SmallVec :: with_capacity ( target_tokens. len ( ) + outer_attrs. len ( ) ) ;
256
244
for attr in outer_attrs {
257
- flat . extend ( attr. tokens ( ) . 0 . iter ( ) . cloned ( ) ) ;
245
+ res . extend ( attr. tokens ( ) . 0 . iter ( ) . cloned ( ) ) ;
258
246
}
259
- flat. extend ( target_tokens) ;
260
- flat. into_iter ( )
247
+ res. extend ( target_tokens) ;
261
248
}
262
- } )
263
- . collect ( ) ;
264
- TokenStream :: new ( trees )
249
+ }
250
+ }
251
+ res
265
252
}
266
253
}
267
254
@@ -409,8 +396,8 @@ impl PartialEq<TokenStream> for TokenStream {
409
396
}
410
397
411
398
impl TokenStream {
412
- pub fn new ( streams : Vec < TokenTree > ) -> TokenStream {
413
- TokenStream ( Lrc :: new ( streams ) )
399
+ pub fn new ( tts : Vec < TokenTree > ) -> TokenStream {
400
+ TokenStream ( Lrc :: new ( tts ) )
414
401
}
415
402
416
403
pub fn is_empty ( & self ) -> bool {
@@ -461,7 +448,7 @@ impl TokenStream {
461
448
AttributesData { attrs : attrs. iter ( ) . cloned ( ) . collect ( ) , tokens : tokens. clone ( ) } ;
462
449
AttrTokenStream :: new ( vec ! [ AttrTokenTree :: Attributes ( attr_data) ] )
463
450
} ;
464
- attr_stream. to_tokenstream ( )
451
+ TokenStream :: new ( attr_stream. to_token_trees ( ) )
465
452
}
466
453
467
454
pub fn from_nonterminal_ast ( nt : & Nonterminal ) -> TokenStream {
0 commit comments