Skip to content

Commit 4a891fe

Browse files
committed
Expand nested items within a backtrace.
Fixes a regression from rust-lang#4913 which causes items to be exanded with spans lacking expn_info from the context's current backtrace.
1 parent 0a5138c commit 4a891fe

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

src/libsyntax/ext/expand.rs

+7-6
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ macro_rules! with_exts_frame (
248248
// When we enter a module, record it, for the sake of `module!`
249249
pub fn expand_item(it: @ast::Item, fld: &mut MacroExpander)
250250
-> SmallVector<@ast::Item> {
251-
let mut decorator_items = SmallVector::zero();
251+
let mut decorator_items: SmallVector<@ast::Item> = SmallVector::zero();
252252
for attr in it.attrs.rev_iter() {
253253
let mname = attr.name();
254254

@@ -262,20 +262,21 @@ pub fn expand_item(it: @ast::Item, fld: &mut MacroExpander)
262262
span: None
263263
}
264264
});
265+
265266
// we'd ideally decorator_items.push_all(expand_item(item, fld)),
266267
// but that double-mut-borrows fld
268+
let mut items: SmallVector<@ast::Item> = SmallVector::zero();
267269
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+
269274
fld.cx.bt_pop();
270275
}
271276
_ => {}
272277
}
273278
}
274279

275-
let decorator_items = decorator_items.move_iter()
276-
.flat_map(|item| expand_item(item, fld).move_iter())
277-
.collect();
278-
279280
let mut new_items = match it.node {
280281
ast::ItemMac(..) => expand_item_mac(it, fld),
281282
ast::ItemMod(_) | ast::ItemForeignMod(_) => {

src/libsyntax/util/small_vector.rs

+8
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ impl<T> FromIterator<T> for SmallVector<T> {
3939
}
4040
}
4141

42+
impl<T> Extendable<T> for SmallVector<T> {
43+
fn extend<I: Iterator<T>>(&mut self, iter: &mut I) {
44+
for val in *iter {
45+
self.push(val);
46+
}
47+
}
48+
}
49+
4250
impl<T> SmallVector<T> {
4351
pub fn zero() -> SmallVector<T> {
4452
Zero

0 commit comments

Comments
 (0)