diff options
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/lexer.rs | 2 | ||||
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/libsyntax/parse/lexer.rs b/src/libsyntax/parse/lexer.rs index f753861892f..2521bb515f7 100644 --- a/src/libsyntax/parse/lexer.rs +++ b/src/libsyntax/parse/lexer.rs @@ -123,7 +123,7 @@ impl Reader for StringReader { } fn span_diag(@self) -> @SpanHandler { self.span_diagnostic } fn peek(@self) -> TokenAndSpan { - // XXX(pcwalton): Bad copy! + // FIXME(pcwalton): Bad copy! TokenAndSpan { tok: self.peek_tok.get(), sp: self.peek_span.get(), diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 557e7e04ebf..fe38ace2ba6 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 { |
