diff options
author | Edwin Cheng <[email protected]> | 2019-06-09 20:41:21 +0100 |
---|---|---|
committer | Edwin Cheng <[email protected]> | 2019-06-09 20:41:21 +0100 |
commit | 60938ff73ed80461982f52cb2b044572e7323a0c (patch) | |
tree | 1ff7cf4c12c0b6133f2593e7133babe2bfea0557 | |
parent | 9ded8d2eabfbe49fe59788d3d9e05e07f10d52ec (diff) |
Remove incorrect FIXME
-rw-r--r-- | crates/ra_ide_api/src/display/navigation_target.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/ra_ide_api/src/display/navigation_target.rs b/crates/ra_ide_api/src/display/navigation_target.rs index 80726efbb..983ebe788 100644 --- a/crates/ra_ide_api/src/display/navigation_target.rs +++ b/crates/ra_ide_api/src/display/navigation_target.rs | |||
@@ -443,8 +443,6 @@ fn description_from_symbol(db: &RootDatabase, symbol: &FileSymbol) -> Option<Str | |||
443 | let file = db.parse(symbol.file_id).tree; | 443 | let file = db.parse(symbol.file_id).tree; |
444 | let node = symbol.ptr.to_node(file.syntax()).to_owned(); | 444 | let node = symbol.ptr.to_node(file.syntax()).to_owned(); |
445 | 445 | ||
446 | // FIXME: After type inference is done, add type information to improve the output | ||
447 | |||
448 | visitor() | 446 | visitor() |
449 | .visit(|node: &ast::FnDef| node.short_label()) | 447 | .visit(|node: &ast::FnDef| node.short_label()) |
450 | .visit(|node: &ast::StructDef| node.short_label()) | 448 | .visit(|node: &ast::StructDef| node.short_label()) |