We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d2367 commit e417fe9Copy full SHA for e417fe9
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: ae16639dfa09a3ec06f7abe1bdc22e8f3e5d28c9
+refs/heads/master: 681f0c7a2b2f83b34f9c0f22ca8e109b047df13a
trunk/src/comp/pretty/pprust.rs
@@ -1011,6 +1011,16 @@ fn print_view_item(&ps s, &@ast::view_item item) {
1011
word(s.s, elt);
1012
}
1013
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
1024
case (ast::view_item_export(?id)) {
1025
head(s, "export");
1026
word(s.s, id);
0 commit comments