diff options
author | veetaha <[email protected]> | 2020-05-12 21:47:45 +0100 |
---|---|---|
committer | veetaha <[email protected]> | 2020-05-12 21:48:04 +0100 |
commit | 65b380fa8dfa9efa589f16bfe7e73403c514128e (patch) | |
tree | 79d08782b267d27f0d70332cae3c9d0dbcb11023 /xtask/src | |
parent | 55a29982c014a57867a540ccc0161ef983cfcf46 (diff) |
Convert to TODOs to FIXMEs as per matklad
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/ast_src.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs index 80b6967b8..bebac4a15 100644 --- a/xtask/src/ast_src.rs +++ b/xtask/src/ast_src.rs | |||
@@ -2150,16 +2150,14 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
2150 | 2150 | ||
2151 | /// Any kind of item that may appear in an impl block | 2151 | /// Any kind of item that may appear in an impl block |
2152 | /// | 2152 | /// |
2153 | /// // TODO: is the following a fixme? | 2153 | /// // FIXME: impl blocks can also contain MacroCall |
2154 | /// impl blocks can also contain MacroCall | ||
2155 | enum AssocItem: NameOwner, AttrsOwner { | 2154 | enum AssocItem: NameOwner, AttrsOwner { |
2156 | FnDef, TypeAliasDef, ConstDef | 2155 | FnDef, TypeAliasDef, ConstDef |
2157 | } | 2156 | } |
2158 | 2157 | ||
2159 | /// Any kind of item that may appear in an extern block | 2158 | /// Any kind of item that may appear in an extern block |
2160 | /// | 2159 | /// |
2161 | /// // TODO: is the following a fixme? | 2160 | /// // FIXME: extern blocks can also contain MacroCall |
2162 | /// extern blocks can also contain MacroCall | ||
2163 | enum ExternItem: NameOwner, AttrsOwner, VisibilityOwner { | 2161 | enum ExternItem: NameOwner, AttrsOwner, VisibilityOwner { |
2164 | FnDef, StaticDef | 2162 | FnDef, StaticDef |
2165 | } | 2163 | } |