Skip to content

Commit 59774e7

Browse files
committed
---
yaml --- r: 12727 b: refs/heads/master c: e1fc7d5 h: refs/heads/master i: 12725: 520e03b 12723: d72ddb4 12719: a26ee9f v: v3
1 parent b765c79 commit 59774e7

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 168a9a82f88f8b6b04d4d2c74fa6c76dc8158fab
2+
refs/heads/master: e1fc7d5f0126e4c213cac589bf301814e0327b9e
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/src/librustsyntax/print/pprust.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,10 @@ fn print_item(s: ps, &&item: @ast::item) {
526526
/*
527527
FIXME: collect all private items and print them
528528
in a single "priv" section
529+
530+
tjc: I'm not going to fix this yet b/c we might
531+
change how exports work, including for class items
532+
(see #1893)
529533
*/
530534
hardbreak_if_not_bol(s);
531535
maybe_print_comment(s, ci.span.lo);
@@ -816,7 +820,7 @@ fn print_mac(s: ps, m: ast::mac) {
816820
_ { word(s.s, " "); }
817821
}
818822
option::iter(arg, bind print_expr(s, _));
819-
// FIXME: extension 'body'
823+
// FIXME: extension 'body' (#2339)
820824
}
821825
ast::mac_embed_type(ty) {
822826
word(s.s, "#<");
@@ -1735,7 +1739,7 @@ fn escape_str(st: str, to_escape: char) -> str {
17351739
cur {
17361740
if cur == to_escape { out += "\\"; }
17371741
// FIXME some (or all?) non-ascii things should be escaped
1738-
1742+
// (See #2306)
17391743
str::push_char(out, cur);
17401744
}
17411745
}

trunk/src/librustsyntax/visit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ fn visit_mac<E>(m: mac, e: E, v: vt<E>) {
331331
ast::mac_embed_type(ty) { v.visit_ty(ty, e, v); }
332332
ast::mac_embed_block(blk) { v.visit_block(blk, e, v); }
333333
ast::mac_ellipsis { }
334-
ast::mac_aq(_, e) { /* FIXME: maybe visit */ }
334+
ast::mac_aq(_, e) { /* FIXME: maybe visit (Issue #2340) */ }
335335
ast::mac_var(_) { }
336336
}
337337
}

0 commit comments

Comments
 (0)