From 7bf75adfd904642022a048c34440ec4b5dfd567d Mon Sep 17 00:00:00 2001 From: John Clements Date: Fri, 7 Jun 2013 10:39:59 -0700 Subject: [PATCH] added FIXME comment --- src/libsyntax/ast.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index cf8fe905d1a3..c7e197ade092 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -20,6 +20,10 @@ use std::option::Option; use std::to_str::ToStr; use extra::serialize::{Encodable, Decodable, Encoder, Decoder}; + +// FIXME #6993: in librustc, uses of "ident" should be replaced +// by just "Name". + // an identifier contains a Name (index into the interner // table) and a SyntaxContext to track renaming and // macro expansion per Flatt et al., "Macros