@@ -248,7 +248,7 @@ macro_rules! with_exts_frame (
248
248
// When we enter a module, record it, for the sake of `module!`
249
249
pub fn expand_item ( it : @ast:: Item , fld : & mut MacroExpander )
250
250
-> SmallVector < @ast:: Item > {
251
- let mut decorator_items = SmallVector :: zero ( ) ;
251
+ let mut decorator_items: SmallVector < @ast :: Item > = SmallVector :: zero ( ) ;
252
252
for attr in it. attrs . rev_iter ( ) {
253
253
let mname = attr. name ( ) ;
254
254
@@ -262,20 +262,21 @@ pub fn expand_item(it: @ast::Item, fld: &mut MacroExpander)
262
262
span : None
263
263
}
264
264
} ) ;
265
+
265
266
// we'd ideally decorator_items.push_all(expand_item(item, fld)),
266
267
// but that double-mut-borrows fld
268
+ let mut items: SmallVector < @ast:: Item > = SmallVector :: zero ( ) ;
267
269
dec_fn ( fld. cx , attr. span , attr. node . value , it,
268
- |item| decorator_items. push ( item) ) ;
270
+ |item| items. push ( item) ) ;
271
+ decorator_items. extend ( & mut items. move_iter ( )
272
+ . flat_map ( |item| expand_item ( item, fld) . move_iter ( ) ) ) ;
273
+
269
274
fld. cx . bt_pop ( ) ;
270
275
}
271
276
_ => { }
272
277
}
273
278
}
274
279
275
- let decorator_items = decorator_items. move_iter ( )
276
- . flat_map ( |item| expand_item ( item, fld) . move_iter ( ) )
277
- . collect ( ) ;
278
-
279
280
let mut new_items = match it. node {
280
281
ast:: ItemMac ( ..) => expand_item_mac ( it, fld) ,
281
282
ast:: ItemMod ( _) | ast:: ItemForeignMod ( _) => {
0 commit comments