diff --git a/crates/ide/src/folding_ranges.rs b/crates/ide/src/folding_ranges.rs index 379ee56502e..1dd37483f6c 100644 --- a/crates/ide/src/folding_ranges.rs +++ b/crates/ide/src/folding_ranges.rs @@ -17,6 +17,8 @@ pub enum FoldKind { Block, ArgList, Region, + Consts, + Statics, } #[derive(Debug)] @@ -250,6 +252,8 @@ fn check(ra_fixture: &str) { FoldKind::Block => "block", FoldKind::ArgList => "arglist", FoldKind::Region => "region", + FoldKind::Consts => "consts", + FoldKind::Statics => "statics" }; assert_eq!(kind, &attr.unwrap()); } @@ -472,7 +476,7 @@ fn fold_consecutive_const() { fn fold_consecutive_static() { check( r#" -static FIRST_STATIC: &str = "first"; +static FIRST_STATIC: &str = "first"; static SECOND_STATIC: &str = "second"; "#, )