Skip to content

Commit e417fe9

Browse files
committed
---
yaml --- r: 2878 b: refs/heads/master c: 681f0c7 h: refs/heads/master v: v3
1 parent 01d2367 commit e417fe9

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: ae16639dfa09a3ec06f7abe1bdc22e8f3e5d28c9
2+
refs/heads/master: 681f0c7a2b2f83b34f9c0f22ca8e109b047df13a

trunk/src/comp/pretty/pprust.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1011,6 +1011,16 @@ fn print_view_item(&ps s, &@ast::view_item item) {
10111011
word(s.s, elt);
10121012
}
10131013
}
1014+
case (ast::view_item_import_glob(?ids,_)) {
1015+
head(s, "import");
1016+
auto first = true;
1017+
for (str elt in ids) {
1018+
if (first) {first = false;}
1019+
else {word(s.s, "::");}
1020+
word(s.s, elt);
1021+
}
1022+
word(s.s, "::*");
1023+
}
10141024
case (ast::view_item_export(?id)) {
10151025
head(s, "export");
10161026
word(s.s, id);

0 commit comments

Comments
 (0)