summary refs log tree commit diff
path: root/src/libsyntax/ext/pipes
diff options
context:
space:
mode:
authorEric Holk <eric.holk@gmail.com>2012-07-25 15:28:36 -0700
committerEric Holk <eric.holk@gmail.com>2012-07-26 10:20:05 -0700
commitfec749df169945f856fcfe0c5ee265616a224d3a (patch)
tree733bf5b7215500e1420cf0c30dc4ac98c183b443 /src/libsyntax/ext/pipes
parentab1defb1ce8d40d03fe0074b56d3066873f62911 (diff)
downloadrust-fec749df169945f856fcfe0c5ee265616a224d3a.tar.gz
rust-fec749df169945f856fcfe0c5ee265616a224d3a.zip
Comments Only: Remove outdated FIXMEs. Fixes #2886.
Diffstat (limited to 'src/libsyntax/ext/pipes')
-rw-r--r--src/libsyntax/ext/pipes/ast_builder.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libsyntax/ext/pipes/ast_builder.rs b/src/libsyntax/ext/pipes/ast_builder.rs
index c9b35e561bb..f367fb63985 100644
--- a/src/libsyntax/ext/pipes/ast_builder.rs
+++ b/src/libsyntax/ext/pipes/ast_builder.rs
@@ -183,7 +183,6 @@ impl ast_builder of ext_ctxt_ast_builder for ext_ctxt {
         {mode: ast::infer(self.next_id()),
          ty: ty,
          ident: name,
-         // FIXME #2886: should this be the same as the infer id?
          id: self.next_id()}
     }
 
@@ -280,7 +279,6 @@ impl ast_builder of ext_ctxt_ast_builder for ext_ctxt {
     }
 
     fn ty_path_ast_builder(path: @ast::path) -> @ast::ty {
-        // FIXME #2886: make sure the node ids are legal.
         @{id: self.next_id(),
           node: ast::ty_path(path, self.next_id()),
           span: self.empty_span()}