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 ae16639 commit 681f0c7Copy full SHA for 681f0c7
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