Comments only: annotate FIXMEs

This commit is contained in:
Tim Chevalier 2012-06-07 13:49:01 -07:00
parent b0f01727fe
commit a494cc1598
4 changed files with 3 additions and 3 deletions

View file

@ -236,7 +236,6 @@ fn visit_ids(item: ast::inlined_item, vfn: fn@(ast::node_id)) {
vfn(self_id);
vfn(parent_id.node);
}
// not sure if this should be here? FIXME
visit::fk_dtor(tps, self_id, parent_id) {
vec::iter(tps) {|tp| vfn(tp.id)}
vfn(id);

View file

@ -90,6 +90,7 @@ fn req_loans_in_expr(ex: @ast::expr,
// will ignore it, but we ought to be requiring it to
// be immutable (whereas something like {f:int} would
// be fine).
// (See #2493)
alt opt_deref_kind(arg_ty.ty) {
some(deref_ptr(region_ptr)) |

View file

@ -122,7 +122,7 @@ fn check_expr(sess: session, def_map: resolve::def_map,
}
// Make sure a const item doesn't recursively refer to itself
// FIXME: Should use the dependency graph when it's available
// FIXME: Should use the dependency graph when it's available (#1356)
fn check_item_recursion(sess: session, ast_map: ast_map::map,
def_map: resolve::def_map, it: @item) {

View file

@ -1,7 +1,7 @@
import syntax::ast::*;
// FIXME this doesn't handle big integer/float literals correctly (nor does
// the rest of our literal handling)
// the rest of our literal handling - issue #33)
enum const_val {
const_float(f64),
const_int(i64),