about summary refs log tree commit diff
path: root/src/boot/fe
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2010-06-28 09:39:43 -0700
committerGraydon Hoare <graydon@mozilla.com>2010-06-28 09:39:43 -0700
commitd608c091680989e331b849fac8936a6e493bed43 (patch)
tree194928a43764fecce4f753533775994b13b98534 /src/boot/fe
parente1f6749f9a7ca09ba9bb49d6bf5aad71c81d5925 (diff)
downloadrust-d608c091680989e331b849fac8936a6e493bed43.tar.gz
rust-d608c091680989e331b849fac8936a6e493bed43.zip
Some fixme-to-issue housekeeping.
Diffstat (limited to 'src/boot/fe')
-rw-r--r--src/boot/fe/cexp.ml2
-rw-r--r--src/boot/fe/item.ml1
-rw-r--r--src/boot/fe/parser.ml2
3 files changed, 2 insertions, 3 deletions
diff --git a/src/boot/fe/cexp.ml b/src/boot/fe/cexp.ml
index 6dffdb96d02..bf5e32b863a 100644
--- a/src/boot/fe/cexp.ml
+++ b/src/boot/fe/cexp.ml
@@ -325,7 +325,7 @@ let unexpected_val (expected:string) (v:pval)  =
       | PVAL_num i -> "num " ^ (Int64.to_string i)
       | PVAL_bool b -> if b then "bool true" else "bool false"
   in
-    (* FIXME: proper error reporting, please. *)
+    (* FIXME (issue #70): proper error reporting, please. *)
     bug () "expected %s, got %s" expected got
 ;;
 
diff --git a/src/boot/fe/item.ml b/src/boot/fe/item.ml
index a2763d965bd..3efd4e2a061 100644
--- a/src/boot/fe/item.ml
+++ b/src/boot/fe/item.ml
@@ -960,7 +960,6 @@ and parse_mod_item_from_signature (ps:pstate)
           let bpos = lexpos ps in
             (ident, span ps apos bpos (decl params (Ast.MOD_ITEM_type t)))
 
-    (* FIXME: parse obj. *)
     | _ -> raise (unexpected ps)
 
 
diff --git a/src/boot/fe/parser.ml b/src/boot/fe/parser.ml
index 3dda93ac257..5df44303664 100644
--- a/src/boot/fe/parser.ml
+++ b/src/boot/fe/parser.ml
@@ -209,7 +209,7 @@ let build_tmp
 
 (* Simple helpers *)
 
-(* FIXME: please rename these, they make eyes bleed. *)
+(* FIXME (issue #71): please rename these, they make eyes bleed. *)
 
 let arr (ls:'a list) : 'a array = Array.of_list ls ;;
 let arl (ls:'a list) : 'a array = Array.of_list (List.rev ls) ;;