File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed
branches/try/src/libsyntax Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 73a25f55ad748b4d3516417c711b99ce446591af
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 5b3cd3900ceda838f5798c30ab96ceb41f962534
5
- refs/heads/try: 82a96a11abcb9cc4d342402746af270eb4f28325
5
+ refs/heads/try: 679514816974f23eff367b37e9082599a25900f0
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
8
8
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ use std::ascii::AsciiExt;
36
36
37
37
// if you change this list without updating src/doc/reference.md, @cmr will be sad
38
38
static KNOWN_FEATURES : & ' static [ ( & ' static str , Status ) ] = & [
39
- ( "globs" , Active ) ,
39
+ ( "globs" , Accepted ) ,
40
40
( "macro_rules" , Active ) ,
41
41
( "struct_variant" , Accepted ) ,
42
42
( "asm" , Active ) ,
@@ -232,13 +232,7 @@ impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> {
232
232
233
233
fn visit_view_item ( & mut self , i : & ast:: ViewItem ) {
234
234
match i. node {
235
- ast:: ViewItemUse ( ref path) => {
236
- if let ast:: ViewPathGlob ( ..) = path. node {
237
- self . gate_feature ( "globs" , path. span ,
238
- "glob import statements are \
239
- experimental and possibly buggy") ;
240
- }
241
- }
235
+ ast:: ViewItemUse ( ..) => { }
242
236
ast:: ViewItemExternCrate ( ..) => {
243
237
for attr in i. attrs . iter ( ) {
244
238
if attr. name ( ) . get ( ) == "phase" {
You can’t perform that action at this time.
0 commit comments