diff options
| author | bors <bors@rust-lang.org> | 2014-01-26 15:26:30 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-01-26 15:26:30 -0800 |
| commit | d3f70f5a7d619343c2d1f63ae8e5ade48051a0af (patch) | |
| tree | 71a6b30347cbf8719bdc8ded37bee3e4e9cf4069 /src/libsyntax/parse/parser.rs | |
| parent | 6743c650c1649dcbb38d17fb029ed738e79ef0ae (diff) | |
| parent | 40df08a5c2cf126c3f1a17945ed9a3599b3ebadd (diff) | |
| download | rust-d3f70f5a7d619343c2d1f63ae8e5ade48051a0af.tar.gz rust-d3f70f5a7d619343c2d1f63ae8e5ade48051a0af.zip | |
auto merge of #11817 : salemtalha/rust/master, r=brson
Fixes Issue #11815
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 7d36d3da561..e110ebae093 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -1237,7 +1237,7 @@ impl Parser { Parser::token_is_lifetime(&self.token) { // CLOSURE // - // XXX(pcwalton): Eventually `token::LT` will not unambiguously + // FIXME(pcwalton): Eventually `token::LT` will not unambiguously // introduce a closure, once procs can have lifetime bounds. We // will need to refactor the grammar a little bit at that point. @@ -3949,7 +3949,7 @@ impl Parser { let generics = self.parse_generics(); // This is a new-style impl declaration. - // XXX: clownshoes + // FIXME: clownshoes let ident = special_idents::clownshoes_extensions; // Special case: if the next identifier that follows is '(', don't @@ -4071,7 +4071,7 @@ impl Parser { token_str)) } - let _ = ast::DUMMY_NODE_ID; // XXX: Workaround for crazy bug. + let _ = ast::DUMMY_NODE_ID; // FIXME: Workaround for crazy bug. let new_id = ast::DUMMY_NODE_ID; (class_name, ItemStruct(@ast::StructDef { |
