diff options
Diffstat (limited to 'crates/libeditor')
-rw-r--r-- | crates/libeditor/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/libeditor/src/lib.rs b/crates/libeditor/src/lib.rs index df0938e90..293fafae7 100644 --- a/crates/libeditor/src/lib.rs +++ b/crates/libeditor/src/lib.rs | |||
@@ -141,8 +141,8 @@ struct Declaration<'f> (SyntaxNodeRef<'f>); | |||
141 | impl<'f> Declaration<'f> { | 141 | impl<'f> Declaration<'f> { |
142 | fn cast(node: SyntaxNodeRef<'f>) -> Option<Declaration<'f>> { | 142 | fn cast(node: SyntaxNodeRef<'f>) -> Option<Declaration<'f>> { |
143 | match node.kind() { | 143 | match node.kind() { |
144 | | STRUCT | ENUM | FUNCTION | TRAIT_ITEM | 144 | | STRUCT | ENUM | FUNCTION | TRAIT |
145 | | CONST_ITEM | STATIC_ITEM | MOD_ITEM | NAMED_FIELD | 145 | | CONST_ITEM | STATIC_ITEM | MODULE | NAMED_FIELD |
146 | | TYPE_ITEM => Some(Declaration(node)), | 146 | | TYPE_ITEM => Some(Declaration(node)), |
147 | _ => None | 147 | _ => None |
148 | } | 148 | } |