diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-07-05 15:58:25 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-07-05 16:10:29 -0700 |
| commit | 889be71cb4d4252073f2dbdedb71e8ea1645f6e3 (patch) | |
| tree | f1ec5573b95225ba92358ee9b9832c50995f8f44 /src/libsyntax | |
| parent | 50d2e7e07e79f3f055832756469eb974fe719de1 (diff) | |
| download | rust-889be71cb4d4252073f2dbdedb71e8ea1645f6e3.tar.gz rust-889be71cb4d4252073f2dbdedb71e8ea1645f6e3.zip | |
Comments only: change TODOs to FIXMEs and annotate them
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/attr.rs | 2 | ||||
| -rw-r--r-- | src/libsyntax/ext/auto_serialize.rs | 2 | ||||
| -rw-r--r-- | src/libsyntax/parse/lexer.rs | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/src/libsyntax/attr.rs b/src/libsyntax/attr.rs index 838e275332b..43a6183b4d5 100644 --- a/src/libsyntax/attr.rs +++ b/src/libsyntax/attr.rs @@ -368,7 +368,7 @@ enum inline_attr { /// True if something like #[inline] is found in the list of attrs. fn find_inline_attr(attrs: ~[ast::attribute]) -> inline_attr { - // TODO---validate the usage of #[inline] and #[inline(always)] + // FIXME (#2809)---validate the usage of #[inline] and #[inline(always)] do vec::foldl(ia_none, attrs) |ia,attr| { alt attr.node.value.node { ast::meta_word(@"inline") { ia_hint } diff --git a/src/libsyntax/ext/auto_serialize.rs b/src/libsyntax/ext/auto_serialize.rs index a1e6aa06d59..64da3a7dcbd 100644 --- a/src/libsyntax/ext/auto_serialize.rs +++ b/src/libsyntax/ext/auto_serialize.rs @@ -58,7 +58,7 @@ Similarly, the code to deserialize an instance of a non-built-in type where `c_Ti` is the code to deserialize an instance of `Ti` using the deserializer `d`. -TODO--Hygiene. Search for "__" strings. We also assume "std" is the +FIXME (#2810)--Hygiene. Search for "__" strings. We also assume "std" is the standard library. Misc notes: diff --git a/src/libsyntax/parse/lexer.rs b/src/libsyntax/parse/lexer.rs index a85e791696f..333ff95c74d 100644 --- a/src/libsyntax/parse/lexer.rs +++ b/src/libsyntax/parse/lexer.rs @@ -23,7 +23,8 @@ enum tt_frame_up { /* to break a circularity */ tt_frame_up(option<tt_frame>) } -/* TODO: figure out how to have a uniquely linked stack, and change to `~` */ +/* FIXME (#2811): figure out how to have a uniquely linked stack, + and change to `~` */ /// an unzipping of `token_tree`s type tt_frame = @{ readme: ~[ast::token_tree], |
