diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-07-11 21:53:57 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-11 21:53:57 +0100 |
commit | 02efda91d0fa856f0a2d33e9370147123c06abe7 (patch) | |
tree | 3acd92492af9b9894d802e0a50d2c5f02e0cabb7 /crates/ra_ide/src | |
parent | 2653440f1c75206bd98e575bca73681aa27979ee (diff) | |
parent | b34cdf7bf47c87290500a573756e719a2699cd3b (diff) |
Merge #5324
5324: Implementations lens for unions r=matklad a=matklad
closes #4728
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide/src')
-rw-r--r-- | crates/ra_ide/src/display/structure.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_ide/src/display/structure.rs b/crates/ra_ide/src/display/structure.rs index c22a5d17b..1f6a3febf 100644 --- a/crates/ra_ide/src/display/structure.rs +++ b/crates/ra_ide/src/display/structure.rs | |||
@@ -127,6 +127,7 @@ fn structure_node(node: &SyntaxNode) -> Option<StructureNode> { | |||
127 | decl_with_detail(it, Some(detail)) | 127 | decl_with_detail(it, Some(detail)) |
128 | }, | 128 | }, |
129 | ast::StructDef(it) => decl(it), | 129 | ast::StructDef(it) => decl(it), |
130 | ast::UnionDef(it) => decl(it), | ||
130 | ast::EnumDef(it) => decl(it), | 131 | ast::EnumDef(it) => decl(it), |
131 | ast::EnumVariant(it) => decl(it), | 132 | ast::EnumVariant(it) => decl(it), |
132 | ast::TraitDef(it) => decl(it), | 133 | ast::TraitDef(it) => decl(it), |