Skip to content

Commit 9fa4763

Browse files
committed
Comments only: annotate FIXMEs in front-end
1 parent 55c0088 commit 9fa4763

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/rustc/front/intrinsic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mod intrinsic {
3232

3333
// FIXME: possibly pair these as enter/leave calls
3434
// not just enter with implicit number of subsequent
35-
// calls.
35+
// calls. (#2402)
3636
fn visit_vec_of(mutbl: uint) -> bool;
3737
fn visit_box_of(mutbl: uint) -> bool;
3838
fn visit_uniq_of(mutbl: uint) -> bool;

src/rustc/front/test.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ fn fold_mod(_cx: test_ctxt, m: ast::_mod, fld: fold::ast_fold) -> ast::_mod {
6565
// Remove any defined main function from the AST so it doesn't clash with
6666
// the one we're going to add. FIXME: This is sloppy. Instead we should
6767
// have some mechanism to indicate to the translation pass which function
68-
// we want to be main.
68+
// we want to be main. (#2403)
6969
fn nomain(&&item: @ast::item) -> option<@ast::item> {
7070
alt item.node {
7171
ast::item_fn(_, _, _) {
@@ -339,6 +339,7 @@ fn mk_test_desc_rec(cx: test_ctxt, test: test) -> @ast::expr {
339339

340340
// Produces a bare function that wraps the test function
341341
// FIXME: This can go away once fn is the type of bare function
342+
// (See #1281)
342343
fn mk_test_wrapper(cx: test_ctxt,
343344
fn_path_expr: ast::expr,
344345
span: span) -> @ast::expr {

0 commit comments

Comments
 (0)